> ## 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.

# Get Creator

> Retrieve a creator profile by ID.

## GET /v1/creators/:id

### Example Request

```bash theme={null}
curl https://api.boobie.ai/v1/creators/cr_abc123 \
  -H "Authorization: Bearer YOUR_BOOBIE_API_KEY"
```

### Response

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