# support.supper.actor.getPage

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

## Definitions

### `support.supper.actor.getPage`

**Type**: `query`

Get a creator/supporter's cross-account Supper page: the indexed support.supper.actor.profile marker plus the actor.about section and all actor.project showcase entries for the account, regardless of which compatible app wrote them. Public Supper AppView read; responses contain only public record bodies and never private metadata or processor identifiers.

#### Parameters

| Property | Type | Required | Description |
|----------|------|----------|-------------|
| `actor` | `string` (at-identifier) | Yes | DID or handle of the account whose Supper page to fetch. |

#### Output

**Encoding**: `application/json`

| Property | Type | Required | Description |
|----------|------|----------|-------------|
| `did` | `string` (did) | Yes | Resolved DID of the requested account. |
| `about` | `ref` → `#aboutView` | No | The account's support.supper.actor.about section, when one is indexed. |
| `profile` | `ref` → `#profileView` | No | The account's support.supper.actor.profile marker when it holds the canonical first-writer-wins page slug. A non-canonical collision claim is omitted. |
| `projects` | `array` | Yes | All indexed support.supper.actor.project entries for the account, newest first. |

### `support.supper.actor.getPage#aboutView`

**Type**: `object`

| Property | Type | Required | Description |
|----------|------|----------|-------------|
| `cid` | `string` (cid) | Yes | CID of the exact about record generation returned in this view. |
| `did` | `string` (did) | Yes |  |
| `uri` | `string` (at-uri) | Yes | AT URI of the indexed support.supper.actor.about record. |
| `text` | `string` | Yes | Public about section text from the record body. |
| `createdAt` | `string` (datetime) | No |  |
| `indexedAt` | `string` (datetime) | Yes | When the AppView indexed this record. |

### `support.supper.actor.getPage#profileView`

**Type**: `object`

| Property | Type | Required | Description |
|----------|------|----------|-------------|
| `cid` | `string` (cid) | Yes | CID of the exact profile record generation returned in this view. |
| `did` | `string` (did) | Yes | Author/owner DID of the profile record. |
| `uri` | `string` (at-uri) | Yes | AT URI of the indexed support.supper.actor.profile record. |
| `slug` | `string` | Yes | The canonical supper.support page slug bound to this DID (first-writer-wins). |
| `pageMode` | `string` | No |  |
| `pageType` | `string` | Yes |  |
| `createdAt` | `string` (datetime) | No |  |
| `indexedAt` | `string` (datetime) | Yes | When the AppView indexed this record. |
| `updatedAt` | `string` (datetime) | No |  |

### `support.supper.actor.getPage#projectView`

**Type**: `object`

| Property | Type | Required | Description |
|----------|------|----------|-------------|
| `cid` | `string` (cid) | Yes | CID of the exact project record generation returned in this view. |
| `did` | `string` (did) | Yes |  |
| `uri` | `string` (at-uri) | Yes | AT URI of the indexed support.supper.actor.project record. |
| `url` | `string` (uri) | No |  |
| `title` | `string` | Yes |  |
| `atHandle` | `string` (handle) | No |  |
| `createdAt` | `string` (datetime) | No |  |
| `indexedAt` | `string` (datetime) | Yes | When the AppView indexed this record. |
| `description` | `string` | No |  |

## Raw Schema

```json
{
  "id": "support.supper.actor.getPage",
  "defs": {
    "main": {
      "type": "query",
      "output": {
        "schema": {
          "type": "object",
          "required": [
            "did",
            "projects"
          ],
          "properties": {
            "did": {
              "type": "string",
              "format": "did",
              "description": "Resolved DID of the requested account."
            },
            "about": {
              "ref": "#aboutView",
              "type": "ref",
              "description": "The account's support.supper.actor.about section, when one is indexed."
            },
            "profile": {
              "ref": "#profileView",
              "type": "ref",
              "description": "The account's support.supper.actor.profile marker when it holds the canonical first-writer-wins page slug. A non-canonical collision claim is omitted."
            },
            "projects": {
              "type": "array",
              "items": {
                "ref": "#projectView",
                "type": "ref"
              },
              "maxLength": 200,
              "description": "All indexed support.supper.actor.project entries for the account, newest first."
            }
          }
        },
        "encoding": "application/json"
      },
      "parameters": {
        "type": "params",
        "required": [
          "actor"
        ],
        "properties": {
          "actor": {
            "type": "string",
            "format": "at-identifier",
            "description": "DID or handle of the account whose Supper page to fetch."
          }
        }
      },
      "description": "Get a creator/supporter's cross-account Supper page: the indexed support.supper.actor.profile marker plus the actor.about section and all actor.project showcase entries for the account, regardless of which compatible app wrote them. Public Supper AppView read; responses contain only public record bodies and never private metadata or processor identifiers."
    },
    "aboutView": {
      "type": "object",
      "required": [
        "uri",
        "cid",
        "did",
        "text",
        "indexedAt"
      ],
      "properties": {
        "cid": {
          "type": "string",
          "format": "cid",
          "description": "CID of the exact about record generation returned in this view."
        },
        "did": {
          "type": "string",
          "format": "did"
        },
        "uri": {
          "type": "string",
          "format": "at-uri",
          "description": "AT URI of the indexed support.supper.actor.about record."
        },
        "text": {
          "type": "string",
          "maxLength": 20000,
          "description": "Public about section text from the record body.",
          "maxGraphemes": 2000
        },
        "createdAt": {
          "type": "string",
          "format": "datetime"
        },
        "indexedAt": {
          "type": "string",
          "format": "datetime",
          "description": "When the AppView indexed this record."
        }
      }
    },
    "profileView": {
      "type": "object",
      "required": [
        "uri",
        "cid",
        "did",
        "pageType",
        "slug",
        "indexedAt"
      ],
      "properties": {
        "cid": {
          "type": "string",
          "format": "cid",
          "description": "CID of the exact profile record generation returned in this view."
        },
        "did": {
          "type": "string",
          "format": "did",
          "description": "Author/owner DID of the profile record."
        },
        "uri": {
          "type": "string",
          "format": "at-uri",
          "description": "AT URI of the indexed support.supper.actor.profile record."
        },
        "slug": {
          "type": "string",
          "maxLength": 253,
          "description": "The canonical supper.support page slug bound to this DID (first-writer-wins)."
        },
        "pageMode": {
          "type": "string",
          "maxLength": 32,
          "knownValues": [
            "support",
            "shop",
            "both"
          ]
        },
        "pageType": {
          "type": "string",
          "maxLength": 32,
          "knownValues": [
            "creator",
            "project",
            "supporter"
          ]
        },
        "createdAt": {
          "type": "string",
          "format": "datetime"
        },
        "indexedAt": {
          "type": "string",
          "format": "datetime",
          "description": "When the AppView indexed this record."
        },
        "updatedAt": {
          "type": "string",
          "format": "datetime"
        }
      }
    },
    "projectView": {
      "type": "object",
      "required": [
        "uri",
        "cid",
        "did",
        "title",
        "indexedAt"
      ],
      "properties": {
        "cid": {
          "type": "string",
          "format": "cid",
          "description": "CID of the exact project record generation returned in this view."
        },
        "did": {
          "type": "string",
          "format": "did"
        },
        "uri": {
          "type": "string",
          "format": "at-uri",
          "description": "AT URI of the indexed support.supper.actor.project record."
        },
        "url": {
          "type": "string",
          "format": "uri"
        },
        "title": {
          "type": "string",
          "maxLength": 1000,
          "maxGraphemes": 100
        },
        "atHandle": {
          "type": "string",
          "format": "handle"
        },
        "createdAt": {
          "type": "string",
          "format": "datetime"
        },
        "indexedAt": {
          "type": "string",
          "format": "datetime",
          "description": "When the AppView indexed this record."
        },
        "description": {
          "type": "string",
          "maxLength": 5000,
          "maxGraphemes": 500
        }
      }
    }
  },
  "$type": "com.atproto.lexicon.schema",
  "lexicon": 1
}
```
