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

---

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