List indexed endorsements with pagination
Parameters
Output
Encoding
application/jsonitems
array
Optional
Endorsement records
total
integer
Required
Total endorsements
Errors
AuthenticationRequired
AdminRequired
Try It
Requests are sent directly from your browser. Some servers may block requests due to CORS.
View raw schema
{
"type": "query",
"errors": [
{
"name": "AuthenticationRequired"
},
{
"name": "AdminRequired"
}
],
"output": {
"schema": {
"type": "object",
"required": [
"total"
],
"properties": {
"items": {
"type": "array",
"items": {
"ref": "#endorsementSummary",
"type": "ref"
},
"description": "Endorsement records"
},
"total": {
"type": "integer",
"description": "Total endorsements"
}
}
},
"encoding": "application/json"
},
"parameters": {
"type": "params",
"properties": {
"limit": {
"type": "integer",
"default": 50,
"maximum": 100,
"minimum": 1,
"description": "Maximum number of results"
},
"cursor": {
"type": "string",
"description": "Pagination cursor"
}
}
},
"description": "List indexed endorsements with pagination"
}