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

# Get Contact

> Get a specific contact by ID

## Request

```bash theme={null}
curl "https://app.orova.ai/api/contacts/CONTACT_ID" \
  -H "x-api-key: YOUR_API_KEY"
```

## Path parameters

| Parameter | Type   | Description |
| --------- | ------ | ----------- |
| `id`      | string | Contact ID  |

## Response

```json theme={null}
{
  "_id": "contact_id",
  "contactName": "John Doe",
  "phoneNumber": "+1234567890",
  "region": "US East",
  "workspaceId": "WORKSPACE_ID",
  "externalFields": {
    "accountNumber": "ACC-001",
    "company": "Acme Corp"
  },
  "createdAt": "2025-01-01T00:00:00.000Z"
}
```
