# support.supper.actor.listSupporting

> 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.actor.listSupporting)
- [Documentation](https://lexicon.garden/lexicon/did:plc:mcsqdltevtjpu26xthzzmm2l/support.supper.actor.listSupporting/docs)
- [Examples](https://lexicon.garden/lexicon/did:plc:mcsqdltevtjpu26xthzzmm2l/support.supper.actor.listSupporting/examples)

## Definitions

### `support.supper.actor.listSupporting`

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

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

#### Output

**Encoding**: `application/json`

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

### `support.supper.actor.listSupporting#supportingView`

**Type**: `object`

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

## Raw Schema

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