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

# Read one conversation with its message transcript

> The conversation

### Path parameters

<ParamField path="id" type="string (uuid)" required>
  The conversation id.
</ParamField>

### Response

`Conversation`

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

<ResponseField name="id" type="string,null" />

<ResponseField name="channel" type="string,null" />

<ResponseField name="status" type="string,null" />

<ResponseField name="escalated" type="boolean" />

<ResponseField name="rating" type="string,null" />

<ResponseField name="agent_id" type="string,null" />

<ResponseField name="subject" type="string,null" />

<ResponseField name="tags" type="any" />

<ResponseField name="created_at" type="string,null" />

<ResponseField name="messages" type="Message[]">
  Single-conversation reads only (capped transcript).

  <Expandable title="Message">
    <ResponseField name="object" type="string" />

    <ResponseField name="id" type="string,null" />

    <ResponseField name="body" type="string,null" />

    <ResponseField name="from_agent" type="boolean" />

    <ResponseField name="author" type="string,null" />

    <ResponseField name="created_at" type="string,null" />
  </Expandable>
</ResponseField>

### Status codes

| Code  | Meaning                                                  |
| ----- | -------------------------------------------------------- |
| `200` | The conversation                                         |
| `401` | Missing, invalid, or expired API key.                    |
| `403` | The key lacks a required scope.                          |
| `404` | Not found, or not in the organization that owns the key. |
| `429` | Rate limit exceeded.                                     |

### Access

|                |                         |
| -------------- | ----------------------- |
| Required scope | `responses:read`        |
| Rate limit     | 120 requests per minute |

<RequestExample>
  ```bash cURL theme={null}
  curl --request GET \
    --url 'https://response.stateset.com/api/v1/conversations/{id}' \
    --header "Authorization: Bearer $RESPONSECX_API_KEY"
  ```
</RequestExample>

<ResponseExample>
  ```json 200 theme={null}
  {
    "object": "string",
    "id": "3fa85f64-5717-4562-b3fc-2c963f66afa6",
    "channel": "string",
    "status": "pending",
    "escalated": true,
    "rating": "string",
    "agent_id": "3fa85f64-5717-4562-b3fc-2c963f66afa6",
    "subject": "Replacement tent pole set",
    "tags": null,
    "created_at": "2026-08-31T14:22:05Z",
    "messages": [
      {
        "object": "string",
        "id": "3fa85f64-5717-4562-b3fc-2c963f66afa6",
        "body": "Two-person tent, green — replacement for damaged pole set.",
        "from_agent": true,
        "author": "string",
        "created_at": "2026-08-31T14:22:05Z"
      }
    ]
  }
  ```
</ResponseExample>
