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

com.atproto.sync.getBlob

atproto-lexicons.bsky.social

Documentation

main query

Get a blob associated with a given account. Returns the full blob as originally uploaded. Does not require auth; implemented by PDS.

Parameters

cid string cid Required

The CID of the blob to fetch

did string did Required

The DID of the account.

Output

Encoding*/*

Errors

BlobNotFound
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": "BlobNotFound"
    },
    {
      "name": "RepoNotFound"
    },
    {
      "name": "RepoTakendown"
    },
    {
      "name": "RepoSuspended"
    },
    {
      "name": "RepoDeactivated"
    }
  ],
  "output": {
    "encoding": "*/*"
  },
  "parameters": {
    "type": "params",
    "required": [
      "did",
      "cid"
    ],
    "properties": {
      "cid": {
        "type": "string",
        "format": "cid",
        "description": "The CID of the blob to fetch"
      },
      "did": {
        "type": "string",
        "format": "did",
        "description": "The DID of the account."
      }
    }
  },
  "description": "Get a blob associated with a given account. Returns the full blob as originally uploaded. Does not require auth; implemented by PDS."
}

Lexicon Garden

@