Retrieve an eprint submission by URI
Parameters
Output
Encoding
application/jsoncid
stringcid
Required
A content identifier (CID) referencing immutable data.
indexedAt
stringdatetime
Required
An RFC 3339 formatted timestamp.
pdsUrl
string
Required
Source PDS URL (transparency)
uri
stringat-uri
Required
An AT Protocol URI (e.g., at://did:plc:xyz/app.bsky.feed.post/abc).
value
unknown
Required
The eprint submission record. Must contain $type field.
Errors
NotFound
Stale
Indexed data is stale, refresh in progress Try It
Requests are sent directly from your browser. Some servers may block requests due to CORS.
View raw schema
{
"type": "query",
"errors": [
{
"name": "NotFound"
},
{
"name": "Stale",
"description": "Indexed data is stale, refresh in progress"
}
],
"output": {
"schema": {
"type": "object",
"required": [
"uri",
"cid",
"value",
"indexedAt",
"pdsUrl"
],
"properties": {
"cid": {
"type": "string",
"format": "cid"
},
"uri": {
"type": "string",
"format": "at-uri"
},
"value": {
"type": "unknown",
"description": "The eprint submission record. Must contain $type field."
},
"pdsUrl": {
"type": "string",
"description": "Source PDS URL (transparency)"
},
"indexedAt": {
"type": "string",
"format": "datetime"
}
}
},
"encoding": "application/json"
},
"parameters": {
"type": "params",
"required": [
"uri"
],
"properties": {
"cid": {
"type": "string",
"format": "cid",
"description": "Specific version CID"
},
"uri": {
"type": "string",
"format": "at-uri",
"description": "Eprint URI"
}
}
},
"description": "Retrieve an eprint submission by URI"
}