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

---

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