Export visitor data
GET
/v1/visitors/:id/exportAuth: Secret API key (rk_sk_)
Data portability export for a visitor (GDPR).
Path parameters
| Name | Type | Description |
|---|---|---|
idrequired | uuid | Visitor ID |
Responses
200Full export
{
"visitor": {
"id": "770e8400-e29b-41d4-a716-446655440002",
"externalId": "usr_123",
"email": "ada@example.com",
"name": "Ada Lovelace",
"attributes": {
"plan": "pro"
},
"createdAt": "2026-01-04T10:00:00Z"
},
"conversations": [
{
"id": "550e8400-e29b-41d4-a716-446655440000",
"siteId": "660e8400-e29b-41d4-a716-446655440001",
"visitorId": "770e8400-e29b-41d4-a716-446655440002",
"status": "open",
"assigneeId": null,
"createdAt": "2026-01-15T10:00:00Z",
"updatedAt": "2026-01-15T10:05:00Z"
}
]
}