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

# Search conversations

`GET /v1/conversations/search`

Find canonical conversation threads by contact identity or, when `field=message`, by message body text.

## Query parameters

- `workspace_id` string, required — Workspace to query.
- `query` string, required — Search value. Use names, emails, phones, or message fragments depending on `field`.
- `field` 'any' | 'contact' | 'name' | 'first_name' | 'last_name' | 'email' | 'phone' | 'whatsapp' | 'channel' | 'message' — Conversation search scope. `message` searches transcript bodies; `any` uses the same heuristics as contact search.
- `limit` integer
- `cursor` string
- `archived` 'true' | 'false'
- `inbox_type_id` string

## Response `200`

Conversation search results

- object — Cursor-paginated conversations response.
  - `data` object[], required
    - `id` string, required
    - `workspace_id` string, required
    - `contact` object, required
      - `id` string, required
      - `first_name` string, required
      - `last_name` string, nullable, required
      - `image_url` string, nullable, required
      - `inbox_type_id` string, required
    - `channel` string, nullable, required
    - `archived` boolean, required
    - `ai_paused` boolean, required
    - `follow_up_at` string, nullable, required
    - `last_message_at` string, nullable, required
    - `last_message_preview` string, nullable, required
    - `created_at` string, required
    - `updated_at` string, required
  - `next_cursor` string, nullable, required
  - `has_more` boolean, required

## Other responses

- `400` — Invalid request
- `401` — Unauthorized
- `403` — Forbidden
- `429` — Rate limit exceeded

---

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