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

[Change history](https://skmtc.dev/ando/apis/ando-public-api/changes/search/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)
