List citations for an eprint (auto-extracted and user-provided)
Parameters
Output
application/jsoncitations
array
Required
No description available.
cursor
string
Optional
Pagination cursor for next page
total
integer
Optional
Total number of matching citations
Try It
Requests are sent directly from your browser. Some servers may block requests due to CORS.
View raw schema
{
"type": "query",
"output": {
"schema": {
"type": "object",
"required": [
"citations"
],
"properties": {
"total": {
"type": "integer",
"description": "Total number of matching citations"
},
"cursor": {
"type": "string",
"description": "Pagination cursor for next page"
},
"citations": {
"type": "array",
"items": {
"ref": "#citation",
"type": "ref"
}
}
}
},
"encoding": "application/json"
},
"parameters": {
"type": "params",
"required": [
"eprintUri"
],
"properties": {
"limit": {
"type": "integer",
"default": 50,
"maximum": 100,
"minimum": 1,
"description": "Maximum number of citations to return"
},
"cursor": {
"type": "string",
"description": "Pagination cursor"
},
"source": {
"type": "string",
"default": "all",
"description": "Filter by citation source type",
"knownValues": [
"all",
"user",
"auto"
]
},
"eprintUri": {
"type": "string",
"format": "at-uri",
"description": "AT-URI of the eprint to list citations for"
}
}
},
"description": "List citations for an eprint (auto-extracted and user-provided)"
}