List a creator's public Supper commerce records across repos: support.supper.membership.program programs, support.supper.membership.tier sidecars, and support.supper.commission offers. Only records authored by the named creator's own repo (creatorVerified) are returned. Public read; membership outputs carry their portable ATM program or tier identity and Supper presentation fields, while catalog product and price data resolve through those ATM records. Outputs never carry processor ids, member lists, or private inventory counts.
Parameters
creator
string
did
Required
DID of the creator whose public commerce records to list.
cursor
string
Optional
Opaque cursor from a previous response.
includeArchived
boolean
Optional
When true, include archived listings. Defaults to false.
kind
string
Optional
Optional filter restricting results to a single listing kind.
limit
integer
Optional
No description available.
Output
application/jsoncursor
string
Optional
No description available.
listings
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": [
"listings"
],
"properties": {
"cursor": {
"type": "string",
"maxLength": 4096
},
"listings": {
"type": "array",
"items": {
"refs": [
"#membershipView",
"#tierView",
"#commissionView"
],
"type": "union",
"closed": false
}
}
}
},
"encoding": "application/json"
},
"parameters": {
"type": "params",
"required": [
"creator"
],
"properties": {
"kind": {
"type": "string",
"maxLength": 32,
"description": "Optional filter restricting results to a single listing kind.",
"knownValues": [
"membership",
"tier",
"commission"
]
},
"limit": {
"type": "integer",
"default": 50,
"maximum": 100,
"minimum": 1
},
"cursor": {
"type": "string",
"maxLength": 4096,
"description": "Opaque cursor from a previous response."
},
"creator": {
"type": "string",
"format": "did",
"description": "DID of the creator whose public commerce records to list."
},
"includeArchived": {
"type": "boolean",
"default": false,
"description": "When true, include archived listings. Defaults to false."
}
}
},
"description": "List a creator's public Supper commerce records across repos: support.supper.membership.program programs, support.supper.membership.tier sidecars, and support.supper.commission offers. Only records authored by the named creator's own repo (creatorVerified) are returned. Public read; membership outputs carry their portable ATM program or tier identity and Supper presentation fields, while catalog product and price data resolve through those ATM records. Outputs never carry processor ids, member lists, or private inventory counts."
}