Skip to main content
GET
/
v1
/
contacts
/
{contactId}
Get Contact
curl --request GET \
  --url https://api.zavu.dev/v1/contacts/{contactId} \
  --header 'Authorization: Bearer <token>'
{
  "id": "con_abc123",
  "phoneNumber": "+56912345678",
  "countryCode": "CL",
  "availableChannels": ["sms", "whatsapp"],
  "defaultChannel": "whatsapp",
  "verified": true,
  "metadata": {
    "name": "John Doe",
    "customerId": "cus_123"
  },
  "createdAt": "2024-01-15T10:00:00.000Z",
  "updatedAt": "2024-01-15T10:00:00.000Z"
}
Retrieve the details of a specific contact.

Path Parameters

contactId
string
required
The contact identifier (e.g., con_abc123)

Response

{
  "id": "con_abc123",
  "phoneNumber": "+56912345678",
  "countryCode": "CL",
  "availableChannels": ["sms", "whatsapp"],
  "defaultChannel": "whatsapp",
  "verified": true,
  "metadata": {
    "name": "John Doe",
    "customerId": "cus_123"
  },
  "createdAt": "2024-01-15T10:00:00.000Z",
  "updatedAt": "2024-01-15T10:00:00.000Z"
}

Example

curl https://api.zavu.dev/v1/contacts/con_abc123 \
  -H "Authorization: Bearer zv_live_xxx"