# GET /contacts/:id

**Resource:** [Contacts](./contacts.md)  
**Scopes:** `contacts:read`  
**Write operation:** no

Retrieve a single contact by ID. Supports field selection and employer expansion.

## Parameters

| Name | In | Type | Required | Description |
|------|----|------|----------|-------------|
| `id` | path | uuid | yes | Contact ID |
| `fields` | query | string | no | Comma-separated list of fields |
| `expand` | query | string | no | Comma-separated expansions: employers |

## Request example

```bash
curl -X GET \
  "https://api.trustpager.com/functions/v1/api/v1/contacts/a1b2c3d4-..." \
  -H "Authorization: Bearer YOUR_API_KEY"
```

## Response example

```json
{
  "data": {
    "id": "a1b2c3d4-...",
    "public_id": "C-001",
    "first_name": "John",
    "last_name": "Smith",
    "email": "john@example.com",
    "phone": "+61412345678",
    "landline": "+61299991234",
    "date_of_birth": "1985-06-15",
    "job_title": "Director",
    "source": "website",
    "email_unsubscribed": false,
    "sms_unsubscribed": false,
    "created_at": "2026-01-15T10:30:00Z",
    "updated_at": "2026-03-20T14:00:00Z"
  },
  "meta": { "credits_remaining": 9500 }
}
```

---
Base URL: `https://api.trustpager.com/functions/v1/api/v1` — Auth: `Authorization: Bearer YOUR_API_KEY`