Consult the tavern's grand ledger to retrieve an adventurer's indexed battle chronicles, ordered newest first.
Parameters
Output
application/jsoncursor
string
Optional
Offset-based pagination cursor (next offset as string).
results
array
Required
No description available.
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": [
"results"
],
"properties": {
"cursor": {
"type": "string",
"description": "Offset-based pagination cursor (next offset as string)."
},
"results": {
"type": "array",
"items": {
"ref": "#matchResultView",
"type": "ref"
}
}
}
},
"encoding": "application/json"
},
"parameters": {
"type": "params",
"required": [
"did"
],
"properties": {
"did": {
"type": "string",
"format": "did",
"description": "The adventurer's DID."
},
"limit": {
"type": "integer",
"default": 20,
"maximum": 100,
"minimum": 1
},
"offset": {
"type": "integer",
"default": 0,
"minimum": 0
}
}
},
"description": "Consult the tavern's grand ledger to retrieve an adventurer's indexed battle chronicles, ordered newest first."
}