Get a blob associated with a given account. Returns the full blob as originally uploaded. Does not require auth; implemented by PDS.
Parameters
Output
Encoding
*/*Errors
BlobNotFound
RepoNotFound
RepoTakendown
RepoSuspended
RepoDeactivated
Try It
Direct PDS XRPC methods (com.atproto.*) are disabled in Try It for security reasons.
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."
}