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 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
profileUuidstringRequiredExample:
Profile uuid parameter
550e8400-e09b-41d4-a716-400055000000contactUuidstring · uuidRequiredExample:
Contact uuid parameter
550e8400-e29b-41d4-a716-446655440000Responses
200
Success response
application/json
uuidstringOptionalExample:
550e8400-e29b-41d4-a716-446655440000emailstringOptionalExample:
john.doe@example.comnamestring · nullableOptionalExample:
Johnsurnamestring · nullableOptionalExample:
Doephonestring · nullableOptionalExample:
+14155552671subscription_statusstring · enumOptionalExample:
subscribedPossible values: subscribed_atstring · date-time · nullableOptionalExample:
2023-01-01T00:00:00Zunsubscribed_atstring · date-time · nullableOptionalExample:
2023-06-15T00:00:00Zcreated_atstring · date-time · nullableOptionalExample:
2022-12-01T00:00:00Zdomainstring · nullableOptionalExample:
example.comsourcestring · enum · nullableOptionalExample:
apiPossible values: notestring · max: 75 · nullableOptionalExample:
VIP customer401
Unauthenticated response
application/json
500
Error response
application/json
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?