place.stream.getLikes

did:web:stream.place View official

Documentation

Get likes for a subject (video or comment).

main query

Get likes for a subject (video or comment).

Parameters

cursor string Optional

Optional pagination cursor.

limit integer Optional

Maximum number of likes to return.

subject string at-uri Required

AT-URI of the subject (video or comment).

Output

Encodingapplication/json
count 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.

Base URL for XRPC calls (e.g., https://api.bsky.social)
Parameters
Optional pagination cursor.
Maximum number of likes to return.
AT-URI of the subject (video or comment).
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)."
}
likeView object

No description available.

Properties

cid string cid Required

A content identifier (CID) referencing immutable data.

indexedAt string datetime Required

An RFC 3339 formatted timestamp.

record unknown Required

No description available.

uri string at-uri Required

An AT Protocol URI (e.g., at://did:plc:xyz/app.bsky.feed.post/abc).

View raw schema
{
  "type": "object",
  "required": [
    "uri",
    "cid",
    "author",
    "record",
    "indexedAt"
  ],
  "properties": {
    "cid": {
      "type": "string",
      "format": "cid"
    },
    "uri": {
      "type": "string",
      "format": "at-uri"
    },
    "author": {
      "ref": "app.bsky.actor.defs#profileViewBasic",
      "type": "ref"
    },
    "record": {
      "type": "unknown"
    },
    "indexedAt": {
      "type": "string",
      "format": "datetime"
    }
  }
}

Lexicon Garden

@