Get a paginated list of supporters for a subject.
Parameters
Output
Encoding
application/jsoncursor
string
Optional
Pagination cursor for fetching the next page of results.
supporters
array
Required
List of supporter profiles.
Errors
InvalidRequest
Invalid DID format. Try It
Direct PDS XRPC methods (com.atproto.*) are disabled in Try It for security reasons.
View raw schema
{
"type": "query",
"errors": [
{
"name": "InvalidRequest",
"description": "Invalid DID format."
}
],
"output": {
"schema": {
"type": "object",
"required": [
"supporters"
],
"properties": {
"cursor": {
"type": "string",
"description": "Pagination cursor for fetching the next page of results."
},
"supporters": {
"type": "array",
"items": {
"ref": "com.atprotofans.hydratedProfile",
"type": "ref"
},
"description": "List of supporter profiles."
}
}
},
"encoding": "application/json"
},
"parameters": {
"type": "params",
"required": [
"subject"
],
"properties": {
"limit": {
"type": "integer",
"default": 50,
"maximum": 100,
"minimum": 1,
"description": "Maximum number of supporters to return."
},
"cursor": {
"type": "string",
"description": "Pagination cursor for fetching additional results."
},
"subject": {
"type": "string",
"format": "did",
"description": "DID of the subject to get supporters for."
}
}
},
"description": "Get a paginated list of supporters for a subject."
}