List endorsements for a specific eprint with optional filtering
Parameters
Output
application/jsoncursor
string
Optional
Cursor for next page
endorsements
array
Required
List of endorsements
hasMore
boolean
Required
Whether more results are available
summary
ref#endorsementSummary
Optional
Aggregated summary
total
integer
Optional
Total number of endorsements
Try It
Requests are sent directly from your browser. Some servers may block requests due to CORS.
View raw schema
{
"type": "query",
"errors": [],
"output": {
"schema": {
"type": "object",
"required": [
"endorsements",
"hasMore"
],
"properties": {
"total": {
"type": "integer",
"description": "Total number of endorsements"
},
"cursor": {
"type": "string",
"description": "Cursor for next page"
},
"hasMore": {
"type": "boolean",
"description": "Whether more results are available"
},
"summary": {
"ref": "#endorsementSummary",
"type": "ref",
"description": "Aggregated summary"
},
"endorsements": {
"type": "array",
"items": {
"ref": "#endorsementView",
"type": "ref"
},
"description": "List of endorsements"
}
}
},
"encoding": "application/json"
},
"parameters": {
"type": "params",
"required": [
"eprintUri"
],
"properties": {
"limit": {
"type": "integer",
"default": 50,
"maximum": 100,
"minimum": 1,
"description": "Maximum number of results to return"
},
"cursor": {
"type": "string",
"description": "Pagination cursor for next page"
},
"eprintUri": {
"type": "string",
"format": "at-uri",
"description": "AT-URI of the eprint"
},
"contributionType": {
"type": "string",
"description": "Filter by contribution type",
"knownValues": [
"methodological",
"analytical",
"theoretical",
"empirical",
"conceptual",
"technical",
"data",
"replication",
"reproducibility",
"synthesis",
"interdisciplinary",
"pedagogical",
"visualization",
"societal-impact",
"clinical"
]
}
}
},
"description": "List endorsements for a specific eprint with optional filtering"
}