Batch chart fetch
Parameters
cursor
string
Optional
Opaque string - receive from a previous request as the `cursor` value
game
string
at-uri
Required
The game to find chart records for.
limit
integer
Optional
How many records to return.
owner
string
at-identifier
Optional
The handle or DID of the account to filter results to.
song
string
at-uri
Required
The song to find chart records for.
Output
Encoding
application/jsoncharts
array
Required
No description available.
cursor
string
Optional
Opaque string - pass back in a future request as the `cursor` value
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": [
"charts"
],
"properties": {
"charts": {
"type": "array",
"items": {
"ref": "dev.tsunagite.chart",
"type": "ref"
}
},
"cursor": {
"type": "string",
"description": "Opaque string - pass back in a future request as the `cursor` value"
}
}
},
"encoding": "application/json"
},
"parameters": {
"type": "params",
"required": [
"game",
"song"
],
"properties": {
"game": {
"type": "string",
"format": "at-uri",
"description": "The game to find chart records for."
},
"song": {
"type": "string",
"format": "at-uri",
"description": "The song to find chart records for."
},
"limit": {
"type": "integer",
"default": 20,
"maximum": 100,
"description": "How many records to return."
},
"owner": {
"type": "string",
"format": "at-identifier",
"description": "The handle or DID of the account to filter results to."
},
"cursor": {
"type": "string",
"description": "Opaque string - receive from a previous request as the `cursor` value"
}
}
},
"description": "Batch chart fetch"
}