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

com.atproto.sync.listBlobs

atproto-lexicons.bsky.social

Documentation

main query

List blob CIDs for an account, since some repo revision. Does not require auth; implemented by PDS.

Parameters

cursor string Optional

No description provided.

did string did Required

The DID of the repo.

limit integer Optional

No description provided.

since string tid Optional

Optional revision of the repo to list blobs since.

Output

Encodingapplication/json
cids array Required

No description provided.

cursor string Optional

No description provided.

Errors

RepoNotFound
RepoTakendown
RepoSuspended
RepoDeactivated
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",
  "errors": [
    {
      "name": "RepoNotFound"
    },
    {
      "name": "RepoTakendown"
    },
    {
      "name": "RepoSuspended"
    },
    {
      "name": "RepoDeactivated"
    }
  ],
  "output": {
    "schema": {
      "type": "object",
      "required": [
        "cids"
      ],
      "properties": {
        "cids": {
          "type": "array",
          "items": {
            "type": "string",
            "format": "cid"
          }
        },
        "cursor": {
          "type": "string"
        }
      }
    },
    "encoding": "application/json"
  },
  "parameters": {
    "type": "params",
    "required": [
      "did"
    ],
    "properties": {
      "did": {
        "type": "string",
        "format": "did",
        "description": "The DID of the repo."
      },
      "limit": {
        "type": "integer",
        "default": 500,
        "maximum": 1000,
        "minimum": 1
      },
      "since": {
        "type": "string",
        "format": "tid",
        "description": "Optional revision of the repo to list blobs since."
      },
      "cursor": {
        "type": "string"
      }
    }
  },
  "description": "List blob CIDs for an account, since some repo revision. Does not require auth; implemented by PDS."
}

Lexicon Garden

@