> ## 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 YOUR_API_KEY'
  ```
</RequestExample>

<ResponseExample>
  ```json 200 theme={null}
  {
    "object": "string",
    "id": null,
    "channel": null,
    "status": null,
    "escalated": true,
    "rating": null,
    "agent_id": null,
    "subject": null,
    "tags": null,
    "created_at": null,
    "messages": [
      {
        "object": "string",
        "id": null,
        "body": null,
        "from_agent": true,
        "author": null,
        "created_at": null
      }
    ]
  }
  ```
</ResponseExample>
