> ## Documentation Index
> Fetch the complete documentation index at: https://docs.stateset.com/llms.txt
> Use this file to discover all available pages before exploring further.

# Get Conversation (v1)

> Get a v1 conversation transcript.

Get a v1 conversation transcript.

### Path parameters

<ParamField path="conversation_id" type="string" required />

### Response

`object`

<ResponseField name="conversation_id" type="string" required />

<ResponseField name="messages" type="object[]" required />

### Status codes

| Code  | Meaning                 |
| ----- | ----------------------- |
| `200` | Successful response     |
| `401` | Authentication required |
| `422` | Validation Error        |
| `429` | Rate limit exceeded     |

<RequestExample>
  ```bash cURL theme={null}
  curl --request GET \
    --url 'http://localhost:8000/api/v1/conversations/{conversation_id}' \
    --header 'Authorization: Bearer YOUR_API_KEY'
  ```
</RequestExample>

<ResponseExample>
  ```json 200 theme={null}
  {
    "conversation_id": "3fa85f64-5717-4562-b3fc-2c963f66afa6",
    "messages": [
      {}
    ]
  }
  ```
</ResponseExample>
