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

com.atproto.repo.listMissingBlobs

atproto-lexicons.bsky.social

Documentation

main query

Returns a list of missing blobs for the requesting account. Intended to be used in the account migration flow.

Parameters

cursor string Optional

No description provided.

limit integer Optional

No description provided.

Output

Encodingapplication/json
blobs array Required

No description provided.

cursor string Optional

No description provided.

Try It

Direct PDS XRPC methods (com.atproto.*) are disabled in Try It for security reasons.

These methods interact directly with Personal Data Servers and require careful handling. Use a dedicated client or CLI tool instead.
View raw schema
{
  "type": "query",
  "output": {
    "schema": {
      "type": "object",
      "required": [
        "blobs"
      ],
      "properties": {
        "blobs": {
          "type": "array",
          "items": {
            "ref": "#recordBlob",
            "type": "ref"
          }
        },
        "cursor": {
          "type": "string"
        }
      }
    },
    "encoding": "application/json"
  },
  "parameters": {
    "type": "params",
    "properties": {
      "limit": {
        "type": "integer",
        "default": 500,
        "maximum": 1000,
        "minimum": 1
      },
      "cursor": {
        "type": "string"
      }
    }
  },
  "description": "Returns a list of missing blobs for the requesting account. Intended to be used in the account migration flow."
}
recordBlob object

Properties

cid string cid Required

A content identifier (CID) referencing immutable data.

recordUri 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": [
    "cid",
    "recordUri"
  ],
  "properties": {
    "cid": {
      "type": "string",
      "format": "cid"
    },
    "recordUri": {
      "type": "string",
      "format": "at-uri"
    }
  }
}

Lexicon Garden

@