---
title: "List contacts"
method: GET
path: "/v1/contacts"
tags: ["contacts"]
---

# List contacts

`GET /v1/contacts`

Returns paginated contact summaries for a workspace, ordered by latest activity by default. Reuse `cursor` with the same filters to continue pagination.

## Query parameters

- `workspace_id` string, required — Workspace to query.
- `limit` integer
- `cursor` string
- `archived` 'true' | 'false'
- `sort_by` 'last_message_at' | 'follow_up_at'
- `order` 'asc' | 'desc'
- `inbox_type_id` string

## Response `200`

Contacts

- object — Cursor-paginated contacts response.
  - `data` object[], required
    - `id` string, required
    - `workspace_id` string, required
    - `first_name` string, required
    - `last_name` string, nullable, required
    - `image_url` string, nullable, required
    - `type` string, nullable, required
    - `inbox_type_id` string, required
    - `archived` boolean, required
    - `ai_paused` boolean, required
    - `last_channel` 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)
