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

# List conversations

`GET /conversations`

Lists active conversations the authenticated workspace member belongs to. The cursor follows membership order and remains valid as memberships change.

## Query parameters

- `limit` integer — Maximum number of conversations to return.
- `cursor` string — Opaque cursor returned by data.page_info.next_cursor. Reuse it unchanged with the same query and filters.

## Response `200`

Membership-scoped conversations.

- ListConversationsResponse — Membership-scoped conversation list. Results are returned in data.items; top-level items is a compatibility alias.
  - `data` object, required — Standard paginated public response data.
    - `items` ConversationResult[], required — Conversations the authenticated workspace member belongs to.
      - `agent_members_count` integer, required — Number of agent workspace members.
      - `created_at` string, date-time, required — Conversation creation timestamp.
      - `creator_member_id` string, nullable, required — Workspace membership ID of the conversation creator, when known.
      - `description` string, nullable, required — Conversation description.
      - `human_members_count` integer, required — Number of human workspace members.
      - `id` string, required — Conversation identifier.
      - `name` string, nullable, required — Conversation name.
      - `type` 0 | 1 | 2, required — Conversation type: 0 channel, 1 direct message, 2 task channel.
    - `page_info` PublicApiPageInfo, required — Target public API pagination metadata with snake_case field names.
      - `end_cursor` string, nullable — Cursor for the last item.
      - `has_next_page` boolean, required — Whether another page exists after this page.
      - `has_previous_page` boolean — Whether another page exists before this page.
      - `next_cursor` string, nullable — Cursor for the next page.
      - `previous_cursor` string, nullable — Cursor for the previous page.
      - `start_cursor` string, nullable — Cursor for the first item.
  - `items` ConversationResult[], required — Compatibility alias for data.items. New clients should read data.items.
    - `agent_members_count` integer, required — Number of agent workspace members.
    - `created_at` string, date-time, required — Conversation creation timestamp.
    - `creator_member_id` string, nullable, required — Workspace membership ID of the conversation creator, when known.
    - `description` string, nullable, required — Conversation description.
    - `human_members_count` integer, required — Number of human workspace members.
    - `id` string, required — Conversation identifier.
    - `name` string, nullable, required — Conversation name.
    - `type` 0 | 1 | 2, required — Conversation type: 0 channel, 1 direct message, 2 task channel.

## Other responses

- `400` — Bad request.
- `401` — Missing or invalid API key.
- `403` — Forbidden.
- `404` — Not found.
- `409` — Conflict.
- `429` — Rate limit or quota exceeded.
- `500` — Internal server error.

## Changes

- **2026-08-30** `a0faedf243c4` — 4 info
  - added the required property `data/items/items/created_at` to the response with the `200` status
  - added the required property `data/items/items/creator_member_id` to the response with the `200` status
  - added the required property `items/items/created_at` to the response with the `200` status
  - added the required property `items/items/creator_member_id` to the response with the `200` status
- **2026-08-17** `bd5b55249bc5` — 1 info
  - endpoint added

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

---

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