Get likes for a subject (video or comment).
Parameters
Output
application/jsoncount
integer
Required
Total number of likes for this subject.
cursor
string
Optional
No description available.
likes
array
Optional
No description available.
subject
stringat-uri
Required
An AT Protocol URI (e.g., at://did:plc:xyz/app.bsky.feed.post/abc).
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": [
"subject",
"count"
],
"properties": {
"count": {
"type": "integer",
"minimum": 0,
"description": "Total number of likes for this subject."
},
"likes": {
"type": "array",
"items": {
"ref": "#likeView",
"type": "ref"
}
},
"cursor": {
"type": "string"
},
"subject": {
"type": "string",
"format": "at-uri"
}
}
},
"encoding": "application/json"
},
"parameters": {
"type": "params",
"required": [
"subject"
],
"properties": {
"limit": {
"type": "integer",
"default": 50,
"maximum": 100,
"minimum": 1,
"description": "Maximum number of likes to return."
},
"cursor": {
"type": "string",
"description": "Optional pagination cursor."
},
"subject": {
"type": "string",
"format": "at-uri",
"description": "AT-URI of the subject (video or comment)."
}
}
},
"description": "Get likes for a subject (video or comment)."
}