Get a post or comment's moderation state and labels.
Parameters
Output
Encoding
application/jsonalt
string
Optional
No description available.
authorDid
stringdid
Required
A decentralized identifier (DID).
createdAt
stringdatetime
Required
An RFC 3339 formatted timestamp.
imageCid
string
Optional
No description available.
kind
string
Required
No description available.
labels
array
Required
No description available.
takedown
boolean
Required
No description available.
text
string
Optional
No description available.
updatedAt
stringdatetime
Optional
An RFC 3339 formatted timestamp.
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",
"kind",
"authorDid",
"takedown",
"labels",
"createdAt"
],
"properties": {
"alt": {
"type": "string"
},
"uri": {
"type": "string",
"format": "at-uri"
},
"kind": {
"enum": [
"post",
"comment"
],
"type": "string"
},
"text": {
"type": "string"
},
"labels": {
"type": "array",
"items": {
"type": "string"
}
},
"imageCid": {
"type": "string"
},
"takedown": {
"type": "boolean"
},
"authorDid": {
"type": "string",
"format": "did"
},
"createdAt": {
"type": "string",
"format": "datetime"
},
"updatedAt": {
"type": "string",
"format": "datetime"
}
}
},
"encoding": "application/json"
},
"parameters": {
"type": "params",
"required": [
"uri"
],
"properties": {
"uri": {
"type": "string",
"format": "at-uri"
}
}
},
"description": "Get a post or comment's moderation state and labels."
}