support.supper.feed.listSupporters

supper.support

Documentation

List the distinct supporter DIDs for a creator across all repos, derived from verified support.supper.feed.post records pointing at the creator. Creator-owned support.supper.entitlement anchors identify unlockable surfaces but do not represent a supporter-to-creator edge. Public read; returns DIDs and aggregate counts only, never amounts, emails, processor identifiers, or private member data.

main query

List the distinct supporter DIDs for a creator across all repos, derived from verified support.supper.feed.post records pointing at the creator. Creator-owned support.supper.entitlement anchors identify unlockable surfaces but do not represent a supporter-to-creator edge. Public read; returns DIDs and aggregate counts only, never amounts, emails, processor identifiers, or private member data.

Parameters

cursor string Optional

Opaque cursor from a previous response.

limit integer Optional

No description available.

recipient string at-identifier Required

DID or handle of the creator whose supporters to list.

Output

Encodingapplication/json
cursor string Optional

No description available.

supporters array Required

No description available.

Try It

Requests are sent directly from your browser. Some servers may block requests due to CORS.

Base URL for XRPC calls (e.g., https://api.bsky.social)
Parameters
Opaque cursor from a previous response.
DID or handle of the creator whose supporters to list.
View raw schema
{
  "type": "query",
  "output": {
    "schema": {
      "type": "object",
      "required": [
        "supporters"
      ],
      "properties": {
        "cursor": {
          "type": "string",
          "maxLength": 4096
        },
        "supporters": {
          "type": "array",
          "items": {
            "ref": "#supporterView",
            "type": "ref"
          }
        }
      }
    },
    "encoding": "application/json"
  },
  "parameters": {
    "type": "params",
    "required": [
      "recipient"
    ],
    "properties": {
      "limit": {
        "type": "integer",
        "default": 50,
        "maximum": 100,
        "minimum": 1
      },
      "cursor": {
        "type": "string",
        "maxLength": 4096,
        "description": "Opaque cursor from a previous response."
      },
      "recipient": {
        "type": "string",
        "format": "at-identifier",
        "description": "DID or handle of the creator whose supporters to list."
      }
    }
  },
  "description": "List the distinct supporter DIDs for a creator across all repos, derived from verified support.supper.feed.post records pointing at the creator. Creator-owned support.supper.entitlement anchors identify unlockable surfaces but do not represent a supporter-to-creator edge. Public read; returns DIDs and aggregate counts only, never amounts, emails, processor identifiers, or private member data."
}
supporterView object

No description available.

Properties

did string did Required

Supporter account DID.

lastSupportedAt string datetime Optional

Most recent indexed support event for this supporter.

postCount integer Optional

Number of verified feed posts this supporter authored for the creator.

minimum: 0
View raw schema
{
  "type": "object",
  "required": [
    "did"
  ],
  "properties": {
    "did": {
      "type": "string",
      "format": "did",
      "description": "Supporter account DID."
    },
    "postCount": {
      "type": "integer",
      "minimum": 0,
      "description": "Number of verified feed posts this supporter authored for the creator."
    },
    "lastSupportedAt": {
      "type": "string",
      "format": "datetime",
      "description": "Most recent indexed support event for this supporter."
    }
  }
}

Lexicon Garden

@