---
title: "Get a chat by ID"
method: GET
path: "/v1/chat/{id}"
tags: ["Chat"]
---

# Get a chat by ID

`GET /v1/chat/{id}`

Retrieve an existing chat by its unique identifier

## Path parameters

- `id` string, uuid, required

## Response `200`

Chat retrieved successfully

- object
  - `data` object, required — Response containing the chat information
    - `id` string, uuid, required — Unique identifier for the chat
    - `projectId` string, uuid, required — ID of the project this chat belongs to
    - `organizationId` string, uuid, required — ID of the organization this chat belongs to
    - `title` string, nullable — Auto-generated title for the chat based on content
    - `summary` string, nullable — Auto-generated summary of the chat conversation
    - `startTimestamp` string, required — Timestamp when the chat started
    - `endTimestamp` string, required — Timestamp when the chat ended
    - `durationMs` number, required — Duration of the chat in milliseconds
    - `createdAt` string, nullable — Timestamp when the chat record was created
    - `updatedAt` string, nullable — Timestamp when the chat record was last updated
    - `simulationJobId` string, uuid, nullable — ID of the simulation job if this chat was generated by a simulation
    - `simulationRunPlanJobId` string, uuid, nullable — ID of the simulation run plan job that this chat belongs to (if applicable)
    - `agents` object[], nullable — Agent information
      - `id` string, uuid, required
    - `customers` object[], nullable — Customer information
      - `phoneNumberE164` string, nullable
      - `label` string, nullable
    - `properties` object, nullable — Custom properties associated with the chat
    - `policyIds` string[], nullable — IDs of metric policies that have been applied to this chat
    - `externalId` string, nullable — Caller-supplied correlation ID echoed back from the create request, if any was provided

## Other responses

- `401` — Unauthorized
- `403` — Forbidden
- `404` — Chat not found
- `429` — Too Many Requests
- `500` — Internal Server Error

---

[API](https://skmtc.dev/roarkhq/apis/roark-analytics-api.md) · [All operations](https://skmtc.dev/roarkhq/apis/roark-analytics-api/llms.txt) · [OpenAPI document](https://skmtc-service-production.skmtc.workers.dev/v1/apis/roarkhq/roark-analytics-api/revisions/1d61b68e9429/schema)
