← Documentation home
GET
/hyax-api/v1/people/:idGet person by ID
Same response shape as Get person by email.
Base URL: https://platform.hyax.com · Replace YOUR_API_KEY with your team API key.
Request examples
Same request in cURL, Node.js (fetch), and PHP (ext-curl).
curl -X GET 'https://platform.hyax.com/hyax-api/v1/people/clx_example_id' \
-H 'Authorization: Bearer YOUR_API_KEY'Example response
Shape varies by data; values are illustrative.
{
"success": true,
"data": {
"id": "clx…",
"email": "[email protected]",
"name": "Ada",
"avatarUrl": null,
"category": "LEAD",
"tags": [],
"signupSource": "API",
"phone": null,
"address1": null,
"address2": null,
"city": null,
"state": null,
"zipCode": null,
"country": null,
"purchaseValue": 0,
"metadata": null,
"subscriberStatus": null,
"subscribedAt": null,
"unsubscribedAt": null,
"createdAt": "2025-01-15T12:00:00.000Z",
"updatedAt": "2025-01-15T12:00:00.000Z",
"subscription": null
}
}