List blob CIDs for an account, since some repo revision. Does not require auth; implemented by PDS.
Parameters
Output
Encoding
application/jsoncids
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.
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."
}