Batch song fetch
Parameters
Output
Encoding
application/jsoncursor
string
Optional
Opaque string - pass back in a future request as the `cursor` value
songs
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": [
"songs"
],
"properties": {
"songs": {
"type": "array",
"items": {
"ref": "dev.tsunagite.song",
"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"
],
"properties": {
"game": {
"type": "string",
"format": "at-uri",
"description": "The game to find song 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 song fetch"
}