bmap_readLikes
Read likes and reactions for a specific post from the BMAP API. Shows who liked the post and what emoji reactions were used.
Read as MarkdownResult
Matching BMAP likes as JSON text.
Permissions
No spending approval is requested by this handler. Public network lookups can still fail or require a compatible service.
Inputs and availability
Full catalog · Before wallet setup; Legacy local wallet; Legacy local identity; Local Vault · broadcasting disabled; Local Vault · all roles; Local Vault · payment role only; Local Vault + sponsor; Droplit wallet
| Field | Type / required | Description |
|---|---|---|
| txid | string Required | Transaction ID of the post to get likes for |
| limit | number Optional | Maximum number of likes to return default: 20; minimum: 1; maximum: 100 |
| page | number Optional | Page number for pagination (1-based) default: 1; minimum: 1 |
Nested fields are required only when their parent object or array item is supplied.
Full input schema
{
"type": "object",
"properties": {
"txid": {
"type": "string",
"description": "Transaction ID of the post to get likes for"
},
"limit": {
"default": 20,
"description": "Maximum number of likes to return",
"type": "number",
"minimum": 1,
"maximum": 100
},
"page": {
"default": 1,
"description": "Page number for pagination (1-based)",
"type": "number",
"minimum": 1
}
},
"required": [
"txid"
],
"$schema": "https://json-schema.org/draft/2020-12/schema"
}