Backfill in-progress. Some lexicons and records may be missing or incomplete.

app.bsky.feed.getRepostedBy

bsky-lexicons.bsky.social

Documentation

main query

Get a list of reposts for a given post.

Parameters

cid string cid Optional

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

cursor string Optional

No description provided.

limit integer Optional

No description provided.

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 provided.

repostedBy array Required

No description provided.

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 reposts 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",
        "repostedBy"
      ],
      "properties": {
        "cid": {
          "type": "string",
          "format": "cid"
        },
        "uri": {
          "type": "string",
          "format": "at-uri"
        },
        "cursor": {
          "type": "string"
        },
        "repostedBy": {
          "type": "array",
          "items": {
            "ref": "app.bsky.actor.defs#profileView",
            "type": "ref"
          }
        }
      }
    },
    "encoding": "application/json"
  },
  "parameters": {
    "type": "params",
    "required": [
      "uri"
    ],
    "properties": {
      "cid": {
        "type": "string",
        "format": "cid",
        "description": "If supplied, filters to reposts 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 reposts for a given post."
}

Lexicon Garden

@