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

# Get Contact

> Retrieve a single contact by ID.

<Note>
  Retrieve your API Key from your [VozAgent Dashboard](https://app.vozagent.ai/settings/api).
</Note>

## Path parameters

<ParamField path="id" type="string" required>
  The unique identifier of the contact to retrieve.
</ParamField>

## Response

Returns the full contact object with all fields including notes and metadata.

<RequestExample>
  ```bash theme={null}
  curl https://api.vozagent.ai/v1/contacts/c1a2b3c4-d5e6-f7a8-b9c0-d1e2f3a4b5c6 \
    -H "Authorization: Bearer <token>"
  ```
</RequestExample>

<ResponseExample>
  ```json theme={null}
  {
    "id": "c1a2b3c4-d5e6-f7a8-b9c0-d1e2f3a4b5c6",
    "first_name": "John",
    "last_name": "Doe",
    "email": "john@example.com",
    "phone_number": "+15551234567",
    "company": "Acme Outdoor Living",
    "job_title": "Owner",
    "tags": ["lead", "outdoor-living"],
    "notes": "Interested in patio installation",
    "time_zone": "America/New_York",
    "source": "VozAgent",
    "created_at": "2024-01-15T09:30:00Z",
    "updated_at": "2024-01-15T09:30:00Z"
  }
  ```
</ResponseExample>
