---
title: "Get chat"
method: GET
path: "/v2/chats/{id}"
tags: ["Chats"]
---

# Get chat

`GET /v2/chats/{id}`

Retrieve a single chat by ID. Only returns chats belonging to the authenticated owner.

## Path parameters

- `id` string, uuid, required

## Headers

- `api-token` string, required

## Response `200`

A chat object

- object
  - `status` integer — Response status
  - `data` Chat
    - `id` string, uuid
    - `created_at` string, date-time
    - `contact_id` string, uuid
    - `user_id` string, uuid
    - `status` 'OPEN' | 'CLOSED' | 'WAITING' | 'SNOOZED' | 'REOPENED'
    - `seen` boolean
    - `unread` boolean
    - `replied` boolean
    - `unseen_count` integer
    - `last_message_at` string, date-time
    - `last_response_at` string, date-time, nullable
    - `last_status_at` string, date-time, nullable
    - `first_response_at` string, date-time, nullable
    - `channel_account_id` string, uuid
    - `team_id` string, uuid, nullable
    - `closed_at` string, date-time, nullable — Timestamp when the chat was closed
    - `first_customer_message_at` string, date-time, nullable — Timestamp of the first customer message in the chat
    - `close_window_at` string, date-time, nullable — Timestamp when the WhatsApp messaging window closes (24h after last customer message)

## Other responses

- `400` — Invalid UUID format
- `401` — Authentication error - invalid or missing api-token
- `404` — Chat not found

---

[API](https://skmtc.net/clint/apis/clint-api.md) · [All operations](https://skmtc.net/clint/apis/clint-api/llms.txt) · [OpenAPI document](https://skmtc-service-staging.skmtc.workers.dev/v1/apis/clint/clint-api/revisions/12b8f9eff943/schema)
