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

# Get Contact

> Retrieve a single prospect contact by ID

# Get Contact

Retrieves a single prospect contact by ID.

## Request

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

### Path parameters

| Parameter   | Type   | Description                  |
| ----------- | ------ | ---------------------------- |
| `contactId` | string | The unique ID of the contact |

## Response `200`

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