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

# List all contacts

`GET /contacts`

Returns a list of contacts from your organization.

## Query parameters

- `page` integer
- `limit` integer
- `search` ContactSearchParams — Optional search parameters.
  - `updated_after` string, date-time — Retrieve contacts updated after the given time.
  - `updated_before` string, date-time — Retrieve contacts updated before the given time.
  - `created_after` string, date-time — Retrieve contacts created after the given time.
  - `created_before` string, date-time — Retrieve contacts created before the given time.
- `search[statuses][]` string[]
- `search[probabilities][]` string[]
- `search[tag]` string
- `search[email]` string
- `search[offices][]` string[]
- `search[sources][]` string[]

## Response `200`

Successful contact list request

- ContactList
  - `pagination` Pagination
    - `limit` integer, required
    - `page` integer, required
    - `total` integer
    - `next_page` string, required
  - `content` ContactForList[]
    - `id` integer
    - `full_name` string
    - `phone` string
    - `email` string
    - `agent` string
    - `source` string
    - `created_at` string, date-time
    - `updated_at` string, date-time

## Other responses

- `400` — At least one search param has an invalid format
- `401` — API key is missing or invalid, or a restricted country was selected

---

[API](https://skmtc.net/easybroker/apis/easybroker-api.md) · [All operations](https://skmtc.net/easybroker/apis/easybroker-api/llms.txt) · [OpenAPI document](https://skmtc-service-staging.skmtc.workers.dev/v1/apis/easybroker/easybroker-api/versions/1aea2ecce635/schema)
