List public feed candidates indexed by the Supper AppView for a bounded set of author DIDs. No authentication is required. This discovery projection includes site.standard.document and support.supper.poll.poll records; source records remain authoritative and consumers must enforce their own moderation and access rules.
Parameters
authors
array
of string
Required
Author DIDs whose indexed public records may be returned.
before
string
datetime
Required
Inclusive immutable upper bound for this feed snapshot.
cursor
string
Optional
Opaque keyset cursor from a previous response.
limit
integer
Optional
No description available.
sources
array
of string
Required
No description available.
Output
application/jsoncandidates
array
Required
No description available.
cursor
string
Optional
No description available.
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": [
"candidates"
],
"properties": {
"cursor": {
"type": "string",
"maxLength": 8192
},
"candidates": {
"type": "array",
"items": {
"refs": [
"#standardSiteCandidate",
"#pollCandidate"
],
"type": "union",
"closed": false
}
}
}
},
"encoding": "application/json"
},
"parameters": {
"type": "params",
"required": [
"authors",
"sources",
"before"
],
"properties": {
"limit": {
"type": "integer",
"default": 50,
"maximum": 100,
"minimum": 1
},
"before": {
"type": "string",
"format": "datetime",
"description": "Inclusive immutable upper bound for this feed snapshot."
},
"cursor": {
"type": "string",
"maxLength": 8192,
"description": "Opaque keyset cursor from a previous response."
},
"authors": {
"type": "array",
"items": {
"type": "string",
"format": "did"
},
"maxLength": 100,
"minLength": 1,
"description": "Author DIDs whose indexed public records may be returned."
},
"sources": {
"type": "array",
"items": {
"type": "string",
"maxLength": 32,
"knownValues": [
"standard-site",
"poll"
]
},
"maxLength": 2,
"minLength": 1
}
}
},
"description": "List public feed candidates indexed by the Supper AppView for a bounded set of author DIDs. No authentication is required. This discovery projection includes site.standard.document and support.supper.poll.poll records; source records remain authoritative and consumers must enforce their own moderation and access rules."
}