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

# List Contacts

> Returns all prospect contacts captured from demo sessions

# List Contacts

Returns all prospect contacts captured from demo sessions.

## Request

```bash theme={null}
GET https://api.repixa.io/v1/contacts
Authorization: Bearer YOUR_API_KEY
```

## Response `200`

```json theme={null}
{
  "data": [
    {
      "id": "cnt_01hx...",
      "name": "Jane Smith",
      "email": "jane@startup.io",
      "company": "Startup Inc.",
      "created_at": "2026-05-20T14:12:22Z"
    }
  ]
}
```

## Response fields

| Field        | Type   | Description                         |
| ------------ | ------ | ----------------------------------- |
| `id`         | string | Unique contact ID                   |
| `name`       | string | Prospect's full name                |
| `email`      | string | Prospect's email address            |
| `company`    | string | Prospect's company name             |
| `created_at` | string | When the contact was first captured |
