GET

Get Contact

Retrieves a single contact by id.

GEThttps://api.vantaxai.com/v1/contacts/{contact_id}

Headers

  • Authorizationstringrequired

    Bearer authentication with your secret API key.

    example: Bearer vx_live_3fa9c2…

Path Parameters

  • contact_idstringrequired

    The contact's unique identifier.

    example: ct_9b21d3

Request

curl -X GET https://api.vantaxai.com/v1/contacts/ct_9b21d3 \
  -H "Authorization: Bearer vx_live_3fa9c2..."

Response

{
  "success": true,
  "data": {
    "id": "ct_9b21d3",
    "first_name": "Jordan",
    "last_name": "Avery",
    "email": "jordan.avery@example.com",
    "phone": "+14155550142",
    "status": "active",
    "address": "200 Market St, San Francisco, CA",
    "lead_source": "website",
    "tags": ["vip", "newsletter"],
    "created_at": "2026-01-14T10:30:00Z",
    "updated_at": "2026-02-02T08:12:00Z"
  }
}