Skip to main content

Get a conversation

GET 
/ai/conversations/:conversation_id

Retrieve a specific AI conversation by its ID.

Request

Path Parameters

    conversation_id stringrequired

    The ID of the conversation to retrieve

Responses

200: Successful Response

404: Conversation Not Found

422: Validation Error

Request samples


curl -L 'https://api.telnyx.com/v2/ai/conversations/:conversation_id' \
-H 'Accept: application/json' \
-H 'Authorization: Bearer <TOKEN>'

Response samples


{
"data": {
"id": "3fa85f64-5717-4562-b3fc-2c963f66afa6",
"name": "",
"created_at": "2025-04-15T13:07:28.764Z",
"metadata": {
"telnyx_conversation_channel": "phone_call",
"telnyx_agent_target": "+13128675309",
"telnyx_end_user_target": "+13128675309",
"assistant_id": "assistant-123"
},
"last_message_at": "2025-04-15T13:07:28.764Z"
}
}