Skip to main content
GET
/
contacts
/
{id}
Get Contact
curl --request GET \
  --url https://api.example.com/contacts/{id}
{
  "success": true,
  "data": {
    "id": 1,
    "phone_number": "233241234567",
    "first_name": "John",
    "last_name": "Doe",
    "email": "john@example.com",
    "groups": [
      {
        "id": 1,
        "uuid": "ee9fb0b4-83f0-4be5-a0be-1063e05ff0b8",
        "name": "VIP Customers"
      }
    ],
    "created_at": "2026-01-01T00:00:00.000000Z",
    "updated_at": "2026-01-01T00:00:00.000000Z"
  }
}

Documentation Index

Fetch the complete documentation index at: https://developers.sendazi.com/llms.txt

Use this file to discover all available pages before exploring further.

id
integer
required
The contact ID
{
  "success": true,
  "data": {
    "id": 1,
    "phone_number": "233241234567",
    "first_name": "John",
    "last_name": "Doe",
    "email": "john@example.com",
    "groups": [
      {
        "id": 1,
        "uuid": "ee9fb0b4-83f0-4be5-a0be-1063e05ff0b8",
        "name": "VIP Customers"
      }
    ],
    "created_at": "2026-01-01T00:00:00.000000Z",
    "updated_at": "2026-01-01T00:00:00.000000Z"
  }
}