# creator

Query

Return details for the creator.

Available to agents as MCP tool `getCreator` — see [Read tools](/api/v2/docs/mcp/read-tools#get-creator).

## Arguments

| Name | Type | Required | Default | Description |
| --- | --- | --- | --- | --- |
| `id` | `ID!` | Yes | — | Unique identifier for the creator in Archive's system. |

## Returns

Returns [`Creator!`](/api/v2/docs/types/creator).

## Examples

### Get a creator by ID

Fetch a single creator and their social profiles by ID.

```graphql
query CreatorDefault($id: ID!) {
  creator(id: $id) {
    id
    customAttributes
    socialProfiles {
      id
      accountName
      provider
      followers
    }
  }
}
```

Variables:

```json
{
  "id": "01f0f8f3-97dd-597c-8cc1-cf75eaabddb0"
}
```

Response — HTTP 200:

```json
{
  "data": {
    "creator": {
      "id": "01f0f8f3-97dd-597c-8cc1-cf75eaabddb0",
      "customAttributes": {
        "age": null,
        "emails": [],
        "gender": "52e6750a-79ca-5f7e-9352-228c7b9cb18f",
        "location": "Northwind HQ 0",
        "full_name": null,
        "phone_numbers": []
      },
      "socialProfiles": [
        {
          "id": "1915685",
          "accountName": "northwind_creator_0",
          "provider": "INSTAGRAM",
          "followers": 10000
        }
      ]
    }
  }
}
```
