app.chronosky.media.getBlob

lexicon.store View official

Documentation

Get a blob by its CID from temporary R2 storage. Returns the raw binary content. The authenticated user's temporary blob is retrieved using their DID and the provided CID.

main query

Get a blob by its CID from temporary R2 storage. Returns the raw binary content. The authenticated user's temporary blob is retrieved using their DID and the provided CID.

Parameters

cid string Required

Content Identifier (CID) of the blob to retrieve.

Output

Encoding*/*

Errors

BlobNotFound The requested blob was not found.
InvalidRequest Invalid CID format or missing parameters.
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
Content Identifier (CID) of the blob to retrieve.
View raw schema
{
  "type": "query",
  "errors": [
    {
      "name": "BlobNotFound",
      "description": "The requested blob was not found."
    },
    {
      "name": "InvalidRequest",
      "description": "Invalid CID format or missing parameters."
    }
  ],
  "output": {
    "encoding": "*/*"
  },
  "parameters": {
    "type": "params",
    "required": [
      "cid"
    ],
    "properties": {
      "cid": {
        "type": "string",
        "maxLength": 200,
        "description": "Content Identifier (CID) of the blob to retrieve."
      }
    }
  },
  "description": "Get a blob by its CID from temporary R2 storage. Returns the raw binary content. The authenticated user's temporary blob is retrieved using their DID and the provided CID."
}

Lexicon Garden

@