List public support.supper.comment records attached to one site.standard.document, support.supper.feed.post, fm.plyr.track, or support.supper.poll.poll across commenter repositories. This query returns portable public record data only; moderation and record deletion remain visible through the indexed protocol state.
Parameters
cursor
string
Optional
Opaque cursor from a previous response.
limit
integer
Optional
No description available.
subject
string
at-uri
Required
AT URI of the site.standard.document, support.supper.feed.post, fm.plyr.track, or support.supper.poll.poll whose comments should be listed. The service must reject subjects outside those collections.
uri
string
at-uri
Optional
Optional exact support.supper.comment AT URI. When present, the result contains at most that one indexed comment and cursor must be omitted.
Output
application/jsoncomments
array
Required
No description available.
cursor
string
Optional
No description available.
total
integer
Required
Exact number of indexed comments matching this query across all pages.
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": [
"comments",
"total"
],
"properties": {
"total": {
"type": "integer",
"minimum": 0,
"description": "Exact number of indexed comments matching this query across all pages."
},
"cursor": {
"type": "string",
"maxLength": 4096
},
"comments": {
"type": "array",
"items": {
"ref": "#commentView",
"type": "ref"
}
}
}
},
"encoding": "application/json"
},
"parameters": {
"type": "params",
"required": [
"subject"
],
"properties": {
"uri": {
"type": "string",
"format": "at-uri",
"description": "Optional exact support.supper.comment AT URI. When present, the result contains at most that one indexed comment and cursor must be omitted."
},
"limit": {
"type": "integer",
"default": 50,
"maximum": 100,
"minimum": 1
},
"cursor": {
"type": "string",
"maxLength": 4096,
"description": "Opaque cursor from a previous response."
},
"subject": {
"type": "string",
"format": "at-uri",
"description": "AT URI of the site.standard.document, support.supper.feed.post, fm.plyr.track, or support.supper.poll.poll whose comments should be listed. The service must reject subjects outside those collections."
}
}
},
"description": "List public support.supper.comment records attached to one site.standard.document, support.supper.feed.post, fm.plyr.track, or support.supper.poll.poll across commenter repositories. This query returns portable public record data only; moderation and record deletion remain visible through the indexed protocol state."
}