No description available.
Parameters
Output
Encoding
application/jsoncoverUrl
string
Optional
No description available.
genres
array
Optional
No description available.
name
string
Required
No description available.
summary
string
Optional
No description available.
uri
stringat-uri
Required
An AT Protocol URI (e.g., at://did:plc:xyz/app.bsky.feed.post/abc).
Try It
Requests are sent directly from your browser. Some servers may block requests due to CORS.
View raw schema
{
"type": "query",
"output": {
"schema": {
"type": "object",
"required": [
"uri",
"name"
],
"properties": {
"uri": {
"type": "string",
"format": "at-uri"
},
"name": {
"type": "string"
},
"genres": {
"type": "array",
"items": {
"type": "string"
}
},
"summary": {
"type": "string"
},
"coverUrl": {
"type": "string"
}
}
},
"encoding": "application/json"
},
"parameters": {
"type": "params",
"required": [
"uri"
],
"properties": {
"uri": {
"type": "string",
"format": "at-uri"
}
}
}
}