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

# GET Retrieve a contact

> Retrieve contact details.

## Endpoint

```txt theme={null}
GET /api/v1/contacts/{id}
```

## Parameters path

| Nom  | Type | Required | Description   |
| ---- | ---- | -------- | ------------- |
| `id` | UUID | yes      | ID du contact |

## Success response `200`

```json theme={null}
{
  "data": {
    "id": "cnt_uuid",
    "name": "Awa Doe",
    "phone": "+33612345000"
  }
}
```
