For the complete documentation index, see llms.txt. This page is also available as Markdown.

Get contact details

Get the full details of a single contact. Alongside the contact's own attributes this returns the tags assigned to it and the values it holds for the profile's custom contact fields.

Get contact details

get

Get the full details of a single contact.

Alongside the contact's own attributes this returns the tags assigned to it and the values it holds for the profile's custom contact fields.

Authorizations
AuthorizationstringRequired

API Token authentication

Path parameters
profileUuidstringRequired

Profile uuid parameter

Example: 550e8400-e09b-41d4-a716-400055000000
contactUuidstring · uuidRequired

Contact uuid parameter

Example: 550e8400-e29b-41d4-a716-446655440000
Responses
200

Success response

application/json
uuidstringOptionalExample: 550e8400-e29b-41d4-a716-446655440000
emailstringOptionalExample: john.doe@example.com
namestring · nullableOptionalExample: John
surnamestring · nullableOptionalExample: Doe
phonestring · nullableOptionalExample: +14155552671
subscription_statusstring · enumOptionalExample: subscribedPossible values:
subscribed_atstring · date-time · nullableOptionalExample: 2023-01-01T00:00:00Z
unsubscribed_atstring · date-time · nullableOptionalExample: 2023-06-15T00:00:00Z
created_atstring · date-time · nullableOptionalExample: 2022-12-01T00:00:00Z
domainstring · nullableOptionalExample: example.com
sourcestring · enum · nullableOptionalExample: apiPossible values:
notestring · max: 75 · nullableOptionalExample: VIP customer
get/api/reach/v1/profiles/{profileUuid}/contacts/{contactUuid}
GET /api/reach/v1/profiles/{profileUuid}/contacts/{contactUuid} HTTP/1.1
Host: developers.hostinger.com
Authorization: Bearer YOUR_SECRET_TOKEN
Accept: */*
{
  "uuid": "550e8400-e29b-41d4-a716-446655440000",
  "email": "john.doe@example.com",
  "name": "John",
  "surname": "Doe",
  "phone": "+14155552671",
  "subscription_status": "subscribed",
  "subscribed_at": "2023-01-01T00:00:00Z",
  "unsubscribed_at": "2023-06-15T00:00:00Z",
  "created_at": "2022-12-01T00:00:00Z",
  "domain": "example.com",
  "source": "api",
  "note": "VIP customer",
  "tags": [
    {
      "uuid": "550e8400-e29b-41d4-a716-446655440000",
      "type": "custom",
      "value": "Newsletter",
      "created_at": "2025-02-27T11:54:22Z"
    }
  ],
  "fields": [
    {
      "uuid": "550e8400-e29b-41d4-a716-446655440000",
      "type": "text",
      "label": "Job title",
      "slug": "job_title",
      "value": "Developer",
      "selected_option_uuids": [
        "text"
      ],
      "options": [
        {
          "uuid": "550e8400-e29b-41d4-a716-446655440000",
          "label": "Gold",
          "sort_order": 0
        }
      ]
    }
  ]
}

Last updated

Was this helpful?