> ## Documentation Index
> Fetch the complete documentation index at: https://docs.boobie.ai/llms.txt
> Use this file to discover all available pages before exploring further.

# Create Creator

> Provision a new creator account on the boobie.ai platform.

## POST /v1/creators

### Body Parameters

| Parameter  | Type   | Required | Description               |
| ---------- | ------ | -------- | ------------------------- |
| `name`     | string | ✓        | Creator full name         |
| `email`    | string | ✓        | Creator email address     |
| `vertical` | string | ✓        | Primary creative vertical |
| `metadata` | object |          | Additional metadata       |

### Example Request

```bash theme={null}
curl -X POST https://api.boobie.ai/v1/creators \
  -H "Authorization: Bearer YOUR_BOOBIE_API_KEY" \
  -H "Content-Type: application/json" \
  -d '{
    "name": "Creator Name",
    "email": "creator@example.com",
    "vertical": "music"
  }'
```

### Response

```json theme={null}
{
  "id": "cr_abc123",
  "name": "Creator Name",
  "email": "creator@example.com",
  "vertical": "music",
  "status": "active",
  "created_at": "2026-06-12T09:00:00Z"
}
```
