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

# List Contacts

`GET /v1/contacts`

## Query parameters

- `search` string — Search by contact name.
- `email` string, email — Filter by email.
- `phone` string — Filter by phone
- `status` boolean — Filter by active/inactive.
- `lead` boolean — Filter leads vs clients.
- `created_from` string, date — Created date to start search.
- `created_to` string, date — Created date to end search.
- `cursor` string — Opaque cursor from a previous response (next_cursor).
- `page_size` integer — Records per page (max 100).

## Response `200`

Successful Response

- ExternalListExternalContactView
  - `data` ExternalContactView[], required
    - `id` string, required
    - `first_name` string, required
    - `middle_name` string
    - `last_name` string
    - `last_name2` string
    - `full_name` string
    - `email` string
    - `phone` string
    - `preferred_language` string — en | es
    - `dob` string, date
    - `age` integer
    - `gender` string — M | F | O
    - `marital_status` string
    - `legal_status` string — Immigration status
    - `birth_country` string
    - `pregnant` boolean
    - `tobacco_user` boolean
    - `deceased` boolean
    - `deceased_date` string, date
    - `status` boolean — Active contact
    - `lead` boolean
    - `source` string
    - `address` ExternalAddress
      - `address_1` string
      - `address_2` string
      - `city` string
      - `state` string
      - `zip` string
      - `county` string
      - `country` string
    - `mailing_address` ExternalAddress
      - `address_1` string
      - `address_2` string
      - `city` string
      - `state` string
      - `zip` string
      - `county` string
      - `country` string
    - `total_income` number
    - `employment` ExternalEmployment[]
      - `company` string
      - `position` string
      - `income` number
      - `company_phone` string
    - `agent` ExternalRecord — Relación compacta hacia el exterior: solo id y nombre.
      - `id` string, required
      - `name` string
    - `referred_by` ExternalRecord — Relación compacta hacia el exterior: solo id y nombre.
      - `id` string, required
      - `name` string
    - `groups` ExternalRecord[]
      - `id` string, required
      - `name` string
    - `has_ssn` boolean — True if the contact has an SSN on file. The value is never exposed.
    - `created` string, date-time, required
    - `last_update` string, date-time, required
  - `next_cursor` string
  - `has_more` boolean

## Other responses

- `400` — Bad Request
- `401` — Unauthorized
- `403` — Forbidden
- `404` — Not Found
- `422` — Validation Error
- `500` — Internal Server Error

---

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