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
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.
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."
}