Public actors who cheered a canonical post, with one entry per actor. No authentication is required; responses contain public records only.
Parameters
additionalSubjects
array
of string
Optional
Optional additional public subject to union with one primary subject. Actors are deduplicated across both. Clients must verify the relationship; this query does not assert that the subjects identify the same post. For counts, requires exactly one primary subject.
cursor
string
Optional
No description available.
limit
integer
Optional
No description available.
subject
string
at-uri
Required
An AT Protocol URI (e.g., at://did:plc:xyz/app.bsky.feed.post/abc).
Output
application/jsonadditionalSubjects
array
Optional
Echoes the additional subject included in the actor-deduplicated union, when requested.
cheers
array
Required
No description available.
cursor
string
Optional
No description available.
total
integer
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": [
"cheers",
"total"
],
"properties": {
"total": {
"type": "integer",
"minimum": 0
},
"cheers": {
"type": "array",
"items": {
"ref": "#cheerView",
"type": "ref"
},
"maxLength": 100
},
"cursor": {
"type": "string",
"maxLength": 512
},
"additionalSubjects": {
"type": "array",
"items": {
"type": "string",
"format": "at-uri"
},
"maxLength": 1,
"description": "Echoes the additional subject included in the actor-deduplicated union, when requested."
}
}
},
"encoding": "application/json"
},
"parameters": {
"type": "params",
"required": [
"subject"
],
"properties": {
"limit": {
"type": "integer",
"default": 50,
"maximum": 100,
"minimum": 1
},
"cursor": {
"type": "string",
"maxLength": 512
},
"subject": {
"type": "string",
"format": "at-uri"
},
"additionalSubjects": {
"type": "array",
"items": {
"type": "string",
"format": "at-uri"
},
"maxLength": 1,
"description": "Optional additional public subject to union with one primary subject. Actors are deduplicated across both. Clients must verify the relationship; this query does not assert that the subjects identify the same post. For counts, requires exactly one primary subject."
}
}
},
"description": "Public actors who cheered a canonical post, with one entry per actor. No authentication is required; responses contain public records only."
}