# support.supper.feed.listSupporters

> Published by [supper.support](https://lexicon.garden/identity/did:plc:mcsqdltevtjpu26xthzzmm2l)

✓ This is the authoritative definition for this NSID.

## Links

- [View on Lexicon Garden](https://lexicon.garden/lexicon/did:plc:mcsqdltevtjpu26xthzzmm2l/support.supper.feed.listSupporters)
- [Documentation](https://lexicon.garden/lexicon/did:plc:mcsqdltevtjpu26xthzzmm2l/support.supper.feed.listSupporters/docs)
- [Examples](https://lexicon.garden/lexicon/did:plc:mcsqdltevtjpu26xthzzmm2l/support.supper.feed.listSupporters/examples)

## Definitions

### `support.supper.feed.listSupporters`

**Type**: `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

| Property | Type | Required | Description |
|----------|------|----------|-------------|
| `limit` | `integer` | No |  |
| `cursor` | `string` | No | Opaque cursor from a previous response. |
| `recipient` | `string` (at-identifier) | Yes | DID or handle of the creator whose supporters to list. |

#### Output

**Encoding**: `application/json`

| Property | Type | Required | Description |
|----------|------|----------|-------------|
| `cursor` | `string` | No |  |
| `supporters` | `array` | Yes |  |

### `support.supper.feed.listSupporters#supporterView`

**Type**: `object`

| Property | Type | Required | Description |
|----------|------|----------|-------------|
| `did` | `string` (did) | Yes | Supporter account DID. |
| `postCount` | `integer` | No | Number of verified feed posts this supporter authored for the creator. |
| `lastSupportedAt` | `string` (datetime) | No | Most recent indexed support event for this supporter. |

## Raw Schema

```json
{
  "id": "support.supper.feed.listSupporters",
  "defs": {
    "main": {
      "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": {
      "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."
        }
      }
    }
  },
  "$type": "com.atproto.lexicon.schema",
  "lexicon": 1
}
```
