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

# List Contacts

`GET /contacts`

List contacts with pagination.

## Query parameters

- `cursor` string, nullable — Pagination cursor
- `limit` integer — Page size
- `search` string, nullable — Search term
- `status` 'active' | 'archived' | 'deleted' | 'bounced' — Status specific to contacts in CRM systems.
- `include_count` boolean — Include total count

## Headers

- `authorization` string, nullable

## Response `200`

Successful Response

- ContactPaginatedResult — Paginated result for contacts.
  - `items` ContactResult[], required — List of contacts
    - `id` string, uuid, required — Contact ID
    - `first_name` string, nullable — First name
    - `last_name` string, nullable — Last name
    - `email` string, nullable — Email address
    - `phone` string, nullable — Phone number
    - `job_title` string, nullable — Job title
    - `crm_provider` 'hubspot' | 'attio' | 'none', required — Provider of the CRM system.
    - `provider_contact_id` string, nullable — Contact ID in the provider CRM system
    - `provider_account_id` string, nullable — Account ID in the provider CRM system
    - `status` 'active' | 'archived' | 'deleted' | 'bounced', required — Status specific to contacts in CRM systems.
    - `sync_status` 'synced' | 'pending_crm' | 'sync_failed' | 'not_synced', required — Status of the synchronization with CRM systems.
    - `last_crm_sync_timestamp` string, date-time, nullable — Last time synced with CRM
    - `created_at` string, date-time, required — Creation timestamp
    - `updated_at` string, date-time, required — Last update timestamp
    - `has_company` boolean — Has associated company
  - `next_cursor` string, nullable — Cursor for fetching next page
  - `has_more` boolean, required — Whether there are more results
  - `total_count` integer, nullable — Total number of contacts (if requested)

## Other responses

- `422` — Validation Error

---

[API](https://skmtc.dev/nomi/apis/fastapi.md) · [All operations](https://skmtc.dev/nomi/apis/fastapi/llms.txt) · [OpenAPI document](https://skmtc-service-production.skmtc.workers.dev/v1/apis/nomi/fastapi/revisions/63a2f545499c/schema)
