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

# List contacts

`GET /contacts`

Retrieve a paginated list of contacts for the authenticated organization.

## Query parameters

- `limit` integer — Maximum number of contacts to return
- `offset` integer — Number of contacts to skip for pagination
- `sort` string, nullable — Sort field. Prefix with '-' for descending order. Available: first_name, last_name, email, created_at
- `search` string, nullable — Search in first_name, last_name, email, or phone_number (finds contacts with search term in ANY of these fields)
- `filter` string, nullable — Advanced filter with AND (&) and OR (|) logic. Format: 'column:value' or 'column:operator:value'. Limits: max 50 conditions, max 20 groups, max 100 items in 'in' operator, max 1000 chars per value. Examples: 'first_name:Mario|last_name:Mario' (OR), 'first_name:Mario&email:gmail.com' (AND).

## Response `200`

Successfully retrieved contacts with custom fields

- object
  - `ok` boolean
  - `data` object[]
    - `id` string, uuid
    - `first_name` string
    - `last_name` string
    - `email` string, email
    - `phone_number` string
    - `address` string
    - `last_call_time` string, date-time
    - `custom_fields` object
  - `meta` object
    - `limit` integer
    - `offset` integer
    - `total_items` integer

## Other responses

- `401` — Invalid or missing API key
- `403` — Insufficient permissions

---

[API](https://skmtc.net/yourang/apis/yourang-ai-external-api-v1.md) · [All operations](https://skmtc.net/yourang/apis/yourang-ai-external-api-v1/llms.txt) · [OpenAPI document](https://skmtc-service-staging.skmtc.workers.dev/v1/apis/yourang/yourang-ai-external-api-v1/versions/49680ee64400/schema)
