Get citation network data for an eprint, including papers that cite it and papers it references (within the Chive index)
Parameters
cursor
string
Optional
Pagination cursor
direction
string
Optional
Citation direction: citing (papers this cites), cited-by (papers citing this), or both
limit
integer
Optional
Maximum number of citations to return
onlyInfluential
boolean
Optional
Only return influential citations
uri
string
at-uri
Required
AT-URI of the eprint
Output
application/jsoncitations
array
Required
No description available.
counts
ref#citationCounts
Required
No description available.
cursor
string
Optional
Pagination cursor for next page
eprint
ref#eprintRef
Required
No description available.
hasMore
boolean
Required
Whether more results are available
Errors
NotFound
ServiceUnavailable
Try It
Requests are sent directly from your browser. Some servers may block requests due to CORS.
View raw schema
{
"type": "query",
"errors": [
{
"name": "NotFound"
},
{
"name": "ServiceUnavailable"
}
],
"output": {
"schema": {
"type": "object",
"required": [
"eprint",
"counts",
"citations",
"hasMore"
],
"properties": {
"counts": {
"ref": "#citationCounts",
"type": "ref"
},
"cursor": {
"type": "string",
"description": "Pagination cursor for next page"
},
"eprint": {
"ref": "#eprintRef",
"type": "ref"
},
"hasMore": {
"type": "boolean",
"description": "Whether more results are available"
},
"citations": {
"type": "array",
"items": {
"ref": "#citation",
"type": "ref"
}
}
}
},
"encoding": "application/json"
},
"parameters": {
"type": "params",
"required": [
"uri"
],
"properties": {
"uri": {
"type": "string",
"format": "at-uri",
"description": "AT-URI of the eprint"
},
"limit": {
"type": "integer",
"default": 20,
"maximum": 100,
"minimum": 1,
"description": "Maximum number of citations to return"
},
"cursor": {
"type": "string",
"description": "Pagination cursor"
},
"direction": {
"type": "string",
"default": "both",
"description": "Citation direction: citing (papers this cites), cited-by (papers citing this), or both",
"knownValues": [
"citing",
"cited-by",
"both"
]
},
"onlyInfluential": {
"type": "boolean",
"default": false,
"description": "Only return influential citations"
}
}
},
"description": "Get citation network data for an eprint, including papers that cite it and papers it references (within the Chive index)"
}