Get the feed by uri
Parameters
Output
Encoding
application/jsoncursor
string
Optional
The pagination cursor for the next set of results.
scrobbles
array
Optional
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",
"properties": {
"cursor": {
"type": "string",
"description": "The pagination cursor for the next set of results."
},
"scrobbles": {
"type": "array",
"items": {
"ref": "app.rocksky.scrobble.defs#scrobbleViewBasic",
"type": "ref"
}
}
}
},
"encoding": "application/json"
},
"parameters": {
"type": "params",
"required": [
"feed"
],
"properties": {
"feed": {
"type": "string",
"format": "at-uri",
"description": "The feed URI."
},
"limit": {
"type": "integer",
"minimum": 1,
"description": "The maximum number of scrobbles to return"
},
"cursor": {
"type": "string",
"description": "The pagination cursor."
},
"offset": {
"type": "integer",
"minimum": 0,
"description": "The offset for pagination"
}
}
},
"description": "Get the feed by uri"
}