---
title: "List Conversations"
method: GET
path: "/chat/conversations"
tags: ["Chat"]
---

# List Conversations

`GET /chat/conversations`

List chat conversations for the current customer.

## Query parameters

- `limit` integer
- `offset` integer
- `search` string, nullable
- `status` string, nullable
- `sort_column` string
- `sort_direction` string
- `chat_widget_id` string, uuid, nullable — Filter to conversations from this widget. The default widget also matches legacy conversations without a widget id.

## Response `200`

Successful Response

- ConversationListResponse
  - `conversations` ConversationListItem[], required
    - `id` string, uuid, required
    - `visitor_name` string, nullable
    - `visitor_phone` string, nullable
    - `visitor_email` string, nullable
    - `status` string, required
    - `message_count` integer
    - `chat_widget_id` string, uuid, nullable
    - `widget_name` string, nullable
    - `origin_url` string, nullable
    - `ip_address` string, nullable
    - `is_test` boolean
    - `started_at` string, date-time, nullable
    - `ended_at` string, date-time, nullable
    - `duration_seconds` integer, nullable
    - `created_at` string, date-time, required
    - `updated_at` string, date-time, nullable
  - `total` integer, required

## Other responses

- `422` — Validation Error

---

[API](https://skmtc.dev/openintake/apis/fastapi.md) · [All operations](https://skmtc.dev/openintake/apis/fastapi/llms.txt) · [OpenAPI document](https://skmtc-service-production.skmtc.workers.dev/v1/apis/openintake/fastapi/revisions/4a81645b59f6/schema)
