support.supper.actor.listSupporting

supper.support

Documentation

List the creators a supporter has payment-verified support.supper.feed.post records for across all repos. The cross-repo inverse of feed.listSupporters. Self-authorship alone is not payment evidence. Public read; returns creator DIDs and aggregate counts only, never amounts, emails, or processor identifiers.

main query

List the creators a supporter has payment-verified support.supper.feed.post records for across all repos. The cross-repo inverse of feed.listSupporters. Self-authorship alone is not payment evidence. Public read; returns creator DIDs and aggregate counts only, never amounts, emails, or processor identifiers.

Parameters

cursor string Optional

Opaque cursor from a previous response.

limit integer Optional

No description available.

supporter string at-identifier Required

DID or handle of the supporter whose supported creators to list.

Output

Encodingapplication/json
cursor string Optional

No description available.

supporting 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 supporter whose supported creators to list.
View raw schema
{
  "type": "query",
  "output": {
    "schema": {
      "type": "object",
      "required": [
        "supporting"
      ],
      "properties": {
        "cursor": {
          "type": "string",
          "maxLength": 4096
        },
        "supporting": {
          "type": "array",
          "items": {
            "ref": "#supportingView",
            "type": "ref"
          }
        }
      }
    },
    "encoding": "application/json"
  },
  "parameters": {
    "type": "params",
    "required": [
      "supporter"
    ],
    "properties": {
      "limit": {
        "type": "integer",
        "default": 50,
        "maximum": 100,
        "minimum": 1
      },
      "cursor": {
        "type": "string",
        "maxLength": 4096,
        "description": "Opaque cursor from a previous response."
      },
      "supporter": {
        "type": "string",
        "format": "at-identifier",
        "description": "DID or handle of the supporter whose supported creators to list."
      }
    }
  },
  "description": "List the creators a supporter has payment-verified support.supper.feed.post records for across all repos. The cross-repo inverse of feed.listSupporters. Self-authorship alone is not payment evidence. Public read; returns creator DIDs and aggregate counts only, never amounts, emails, or processor identifiers."
}
supportingView object

No description available.

Properties

creator string did Required

Creator/project DID the supporter supports.

lastSupportedAt string datetime Optional

Most recent indexed support event for this creator.

postCount integer Optional

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

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

Lexicon Garden

@