get-post-likes
Retrieve details of users who liked a specific post on Bluesky by providing the post URI and optional limit. Ideal for analyzing post engagement and audience interaction.
Instructions
Get information about users who have liked a specific post
Input Schema
Name | Required | Description | Default |
---|---|---|---|
limit | No | Maximum number of likes to fetch (1-100) | |
uri | Yes | The URI of the post to get likes for (e.g., at://did:plc:abcdef/app.bsky.feed.post/123) |
Input Schema (JSON Schema)
{
"$schema": "http://json-schema.org/draft-07/schema#",
"additionalProperties": false,
"properties": {
"limit": {
"default": 100,
"description": "Maximum number of likes to fetch (1-100)",
"maximum": 100,
"minimum": 1,
"type": "number"
},
"uri": {
"description": "The URI of the post to get likes for (e.g., at://did:plc:abcdef/app.bsky.feed.post/123)",
"type": "string"
}
},
"required": [
"uri"
],
"type": "object"
}