No description available.
Parameters
Output
Encoding
application/jsonartists
array
Required
No description available.
cursor
string
Optional
Next page cursor
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": [
"artists"
],
"properties": {
"cursor": {
"type": "string",
"description": "Next page cursor"
},
"artists": {
"type": "array",
"items": {
"ref": "fm.teal.stats.defs#artistView",
"type": "ref"
}
}
}
},
"encoding": "application/json"
},
"parameters": {
"type": "params",
"required": [
"actor"
],
"properties": {
"actor": {
"type": "string",
"format": "at-identifier",
"description": "The user's DID or handle"
},
"limit": {
"type": "integer",
"default": 50,
"maximum": 100,
"minimum": 1,
"description": "Number of artists to return"
},
"cursor": {
"type": "string",
"description": "Pagination cursor"
},
"period": {
"enum": [
"30days",
"7days"
],
"type": "string",
"default": "30days",
"description": "Time period for top artists"
}
}
}
}