List the distinct supporter DIDs for a creator across all repos, derived from verified support.supper.feed.post records pointing at the creator. Creator-owned support.supper.entitlement anchors identify unlockable surfaces but do not represent a supporter-to-creator edge. Public read; returns DIDs and aggregate counts only, never amounts, emails, processor identifiers, or private member data.
Parameters
Output
application/jsoncursor
string
Optional
No description available.
supporters
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": [
"supporters"
],
"properties": {
"cursor": {
"type": "string",
"maxLength": 4096
},
"supporters": {
"type": "array",
"items": {
"ref": "#supporterView",
"type": "ref"
}
}
}
},
"encoding": "application/json"
},
"parameters": {
"type": "params",
"required": [
"recipient"
],
"properties": {
"limit": {
"type": "integer",
"default": 50,
"maximum": 100,
"minimum": 1
},
"cursor": {
"type": "string",
"maxLength": 4096,
"description": "Opaque cursor from a previous response."
},
"recipient": {
"type": "string",
"format": "at-identifier",
"description": "DID or handle of the creator whose supporters to list."
}
}
},
"description": "List the distinct supporter DIDs for a creator across all repos, derived from verified support.supper.feed.post records pointing at the creator. Creator-owned support.supper.entitlement anchors identify unlockable surfaces but do not represent a supporter-to-creator edge. Public read; returns DIDs and aggregate counts only, never amounts, emails, processor identifiers, or private member data."
}