Export conversation
GET
/v1/conversations/:id/exportAuth: Secret API key (rk_sk_)
Export full conversation transcript as JSON.
Path parameters
| Name | Type | Description |
|---|---|---|
idrequired | uuid | Conversation ID |
Responses
200Full transcript
{
"conversation": {
"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"
},
"messages": [
{
"id": "880e8400-e29b-41d4-a716-446655440003",
"conversationId": "550e8400-e29b-41d4-a716-446655440000",
"body": "Hi, I need help with my order",
"senderType": "visitor",
"createdAt": "2026-01-15T10:01:00Z"
}
]
}