Discover canonical indexed Supper pages: first-writer-wins support.supper.actor.profile markers across all repos, optionally filtered by page type or a slug substring. Non-canonical collision claims are omitted. Also answers 'does this DID/slug have a Supper page'. Public read; outputs carry only public profile fields, never private metadata or processor identifiers.
Parameters
Output
application/jsoncursor
string
Optional
No description available.
pages
array
Required
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": [
"pages"
],
"properties": {
"pages": {
"type": "array",
"items": {
"ref": "#pageView",
"type": "ref"
}
},
"cursor": {
"type": "string",
"maxLength": 4096
}
}
},
"encoding": "application/json"
},
"parameters": {
"type": "params",
"properties": {
"q": {
"type": "string",
"maxLength": 80,
"description": "Optional case-insensitive substring matched against the page slug."
},
"limit": {
"type": "integer",
"default": 50,
"maximum": 100,
"minimum": 1
},
"cursor": {
"type": "string",
"maxLength": 4096,
"description": "Opaque cursor from a previous response."
},
"pageType": {
"type": "string",
"maxLength": 32,
"description": "Optional page-type filter.",
"knownValues": [
"creator",
"project",
"supporter"
]
}
}
},
"description": "Discover canonical indexed Supper pages: first-writer-wins support.supper.actor.profile markers across all repos, optionally filtered by page type or a slug substring. Non-canonical collision claims are omitted. Also answers 'does this DID/slug have a Supper page'. Public read; outputs carry only public profile fields, never private metadata or processor identifiers."
}