---
title: "Search conversations"
method: GET
path: "/search/conversations"
tags: ["Search"]
---

# Search conversations

`GET /search/conversations`

Searches conversations accessible to the authenticated API key.

## Query parameters

- `q` string, required — Search query text.

## Response `200`

Conversation search results.

- SearchConversationsResponse — Search conversations response. Results are returned in data.items; top-level items is a compatibility alias.
  - `data` object, required — Standard paginated public response data.
    - `items` ConversationResult[], required — Conversation results.
      - `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)
