> 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://fern.docs.buildwithfern.com/learn/docs/ai-features/ask-fern/api-reference/conversation/get-conversation-by-id

## Authentication

- `Authorization` header (bearer token, required)

## 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)

## Examples

**Response**

```json
{
  "conversation": {
    "conversation_id": "string",
    "created_at": "2024-01-15T09:30:00Z",
    "turns": [
      {
        "role": "string",
        "text": "string",
        "created_at": "2024-01-15T09:30:00Z",
        "feedback": {
          "is_helpful": true,
          "feedback_message": "string"
        }
      }
    ]
  }
}
```