Get a creator/supporter's cross-account Supper page: the indexed support.supper.actor.profile marker plus the actor.about section and all actor.project showcase entries for the account, regardless of which compatible app wrote them. Public Supper AppView read; responses contain only public record bodies and never private metadata or processor identifiers.
Parameters
Output
application/jsonabout
ref#aboutView
Optional
The account's support.supper.actor.about section, when one is indexed.
did
stringdid
Required
Resolved DID of the requested account.
profile
ref#profileView
Optional
The account's support.supper.actor.profile marker when it holds the canonical first-writer-wins page slug. A non-canonical collision claim is omitted.
projects
array
Required
All indexed support.supper.actor.project entries for the account, newest first.
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": [
"did",
"projects"
],
"properties": {
"did": {
"type": "string",
"format": "did",
"description": "Resolved DID of the requested account."
},
"about": {
"ref": "#aboutView",
"type": "ref",
"description": "The account's support.supper.actor.about section, when one is indexed."
},
"profile": {
"ref": "#profileView",
"type": "ref",
"description": "The account's support.supper.actor.profile marker when it holds the canonical first-writer-wins page slug. A non-canonical collision claim is omitted."
},
"projects": {
"type": "array",
"items": {
"ref": "#projectView",
"type": "ref"
},
"maxLength": 200,
"description": "All indexed support.supper.actor.project entries for the account, newest first."
}
}
},
"encoding": "application/json"
},
"parameters": {
"type": "params",
"required": [
"actor"
],
"properties": {
"actor": {
"type": "string",
"format": "at-identifier",
"description": "DID or handle of the account whose Supper page to fetch."
}
}
},
"description": "Get a creator/supporter's cross-account Supper page: the indexed support.supper.actor.profile marker plus the actor.about section and all actor.project showcase entries for the account, regardless of which compatible app wrote them. Public Supper AppView read; responses contain only public record bodies and never private metadata or processor identifiers."
}