> ## 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 a get conversation conversations conversation ID

> Get details of a specific conversation.

Get details of a specific conversation.

### Path parameters

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

### Response

`object`

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

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

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

<ResponseField name="created_at" type="string (date-time)" />

<ResponseField name="last_message_at" type="string (date-time)" />

<ResponseField name="total_tokens" type="integer" />

<ResponseField name="metadata" type="object" />

### Status codes

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

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

<ResponseExample>
  ```json 200 theme={null}
  {
    "conversation_id": "3fa85f64-5717-4562-b3fc-2c963f66afa6",
    "agent_id": "3fa85f64-5717-4562-b3fc-2c963f66afa6",
    "messages": [
      {}
    ],
    "created_at": "2026-08-31T14:22:05Z",
    "last_message_at": "2026-08-31T14:22:05Z",
    "total_tokens": 1,
    "metadata": {}
  }
  ```
</ResponseExample>
