> For clean Markdown content of this page, append .md to this URL. For the complete documentation index, see https://buildwithfern.com/learn/llms.txt. # Get Conversation By Id GET https://fai.buildwithfern.com/conversation/{domain}/{conversation_id} Reference: https://buildwithfern.com/learn/docs/ai-features/ask-fern/api-reference/conversation/get-conversation-by-id ## Authentication - `Authorization` header (bearer token, required) — Bearer authentication of the form `Bearer `, where token is your auth token. ## Servers - `https://fai.buildwithfern.com` (Production, default) - `https://fai-dev.buildwithfern.com` (Development) - `http://localhost:8080` (Local) ## Request ### Path parameters - `domain` (string, required) - `conversation_id` (string, required) ## Response ### 200 Successful Response - `conversation` (object, required) — The complete conversation with all turns - `conversation_id` (string, required) - `created_at` (datetime, required) - `turns` (list of object, required) - `role` (string, required) - `text` (string, required) - `created_at` (datetime, required) - `feedback` (object, optional, nullable) - `is_helpful` (boolean, required) - `feedback_message` (string, optional, nullable) ## Errors ### 422 Unprocessable Entity Error Validation Error - `detail` (list of object, optional) - `loc` (list of string or integer, required) - `msg` (string, required) - `type` (string, required) ## Examples **Request** ```json {} ``` **Response** ```json { "conversation": { "conversation_id": "a1b2c3d4-e5f6-7890-ab12-cd34ef567890", "created_at": "2024-01-15T09:30:00Z", "turns": [ { "role": "user", "text": "Hi, I need help with my recent order.", "created_at": "2024-01-15T09:31:00Z", "feedback": { "is_helpful": true, "feedback_message": "The response was clear and resolved my issue." } } ] } } ```