com.atproto.repo.listMissingBlobs
GET/xrpc/com.atproto.repo.listMissingBlobs
This endpoint is part of the atproto PDS repository management APIs. Requests usually require authentication (unlike the com.atproto.sync.*
endpoints), and are made directly to the user's own PDS instance.
To learn more about calling atproto API endpoints like this one, see the API Hosts and Auth guide.
Returns a list of missing blobs for the requesting account. Intended to be used in the account migration flow.
Request
Query Parameters
limit integer
Possible values: >= 1
and <= 1000
Default value: 500
cursor string
Responses
- 200
- 400
- 401
OK
- application/json
- Schema
- Example (from schema)
Schema
Array [
]
cursor string
blobs
object[]
required
cid cidrequired
recordUri at-urirequired
{
"cursor": "string",
"blobs": [
{
"cid": "string",
"recordUri": "string"
}
]
}
Bad Request
- application/json
- Schema
- Example (from schema)
Schema
error stringrequired
Possible values: [InvalidRequest
, ExpiredToken
, InvalidToken
]
message stringrequired
{
"error": "InvalidRequest",
"message": "string"
}
Unauthorized
- application/json
- Schema
- Example (from schema)
Schema
error required
message stringrequired
{
"message": "string"
}
Loading...