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

# List conversations

`GET /conversations`

Lists inbox conversations with subscriber replies, filtered by status, unread flag, or search term.

## Query parameters

- `status` 'all' | 'open' | 'closed'
- `search` string
- `page` integer
- `limit` integer
- `unread` 'true'

## Response `200`

Conversations returned

- object
  - `success` boolean
  - `conversations` ConversationSummary[]
    - `id` string
    - `subscriberId` string, nullable
    - `subscriberEmail` string, email
    - `subscriberName` string, nullable
    - `subject` string, nullable
    - `status` 'open' | 'closed'
    - `messageCount` integer
    - `lastMessageAt` string, date-time
    - `lastMessageBy` string
    - `hasUnread` boolean
    - `createdAt` string, date-time
    - `context` object
      - `type` string — Originating email type (campaign, sequence, transactional, or unknown).
      - `label` string, nullable — Campaign or sequence name.
  - `pagination` Pagination
    - `page` integer
    - `limit` integer
    - `total` integer
    - `totalPages` integer

## Other responses

- `400` — Invalid status filter
- `401` — Unauthorized
- `503` — The database was temporarily unavailable. The request may be retried after the delay in Retry-After.

## Changes

- **2026-08-19** `ba3a29c6eb33` — 3 info
  - added the optional property `retryable` to the response with the `400` status
  - added the optional property `retryable` to the response with the `401` status
  - added the optional property `retryable` to the response with the `503` status
- **2026-08-18** `8fbabe82a04d` — 1 info
  - added the non-success response with the status `503`
- **2026-08-16** `6fd2903b91ce` — 2 info
  - added the optional property `code` to the response with the `400` status
  - added the optional property `code` to the response with the `401` status
- **2026-08-02** `36f92fc0caa2` — 2 breaking
  - the response property `success` became optional for the status `400`
  - the response property `success` became optional for the status `401`
- **2026-06-11** `ad2d3114269a` — 1 info
  - endpoint added

[Change history](https://skmtc.dev/sequenzy/apis/sequenzy-api/changes/conversations/get.md)

---

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