app.bsky.feed.getQuotes

bsky-lexicons.bsky.social

Documentation

Get a list of quotes for a given post.

main query

Get a list of quotes for a given post.

Parameters

cid string cid Optional

If supplied, filters to quotes of specific version (by CID) of the post record.

cursor string Optional

No description available.

limit integer Optional

No description available.

uri string at-uri Required

Reference (AT-URI) of post record

Output

Encodingapplication/json
cid stringcid Optional

A content identifier (CID) referencing immutable data.

cursor string Optional

No description available.

posts array Required

No description available.

uri 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
If supplied, filters to quotes of specific version (by CID) of the post record.
Reference (AT-URI) of post record
View raw schema
{
  "type": "query",
  "output": {
    "schema": {
      "type": "object",
      "required": [
        "uri",
        "posts"
      ],
      "properties": {
        "cid": {
          "type": "string",
          "format": "cid"
        },
        "uri": {
          "type": "string",
          "format": "at-uri"
        },
        "posts": {
          "type": "array",
          "items": {
            "ref": "app.bsky.feed.defs#postView",
            "type": "ref"
          }
        },
        "cursor": {
          "type": "string"
        }
      }
    },
    "encoding": "application/json"
  },
  "parameters": {
    "type": "params",
    "required": [
      "uri"
    ],
    "properties": {
      "cid": {
        "type": "string",
        "format": "cid",
        "description": "If supplied, filters to quotes of specific version (by CID) of the post record."
      },
      "uri": {
        "type": "string",
        "format": "at-uri",
        "description": "Reference (AT-URI) of post record"
      },
      "limit": {
        "type": "integer",
        "default": 50,
        "maximum": 100,
        "minimum": 1
      },
      "cursor": {
        "type": "string"
      }
    }
  },
  "description": "Get a list of quotes for a given post."
}

Lexicon Garden

@