---
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 created 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

## Other responses

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

---

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