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

# List Contacts

`GET /api/external/v2/contacts`

## Query parameters

- `limit` integer — Number of results to return (1-200, clamped)
- `offset` integer — Offset for pagination (>= 0, clamped)
- `fields` string, nullable — Comma-separated sparse fieldset
- `include` string, nullable — Comma-separated relationship includes
- `cursor` string, nullable — Base64 cursor for pagination
- `sort` string, nullable — Comma-separated, - prefix for desc

## Response `200`

Successful Response

- ContactListResponse — OpenAPI schema for GET /api/external/v2/contacts (list envelope).
  - `request_id` string, required
  - `timestamp` string, required
  - `data` ContactResponse[], required
    - `id` integer, required
    - `first_name` string, nullable
    - `last_name` string, nullable
    - `email` string, nullable
    - `contact_type` string, nullable
    - `contact_types` string[]
    - `company_id` integer, nullable
    - `title` string, nullable
    - `department` string, nullable
    - `address` string, nullable
    - `address2` string, nullable
    - `city` string, nullable
    - `state` string, nullable
    - `zip` string, nullable
    - `linkedin_url` string, nullable
    - `photo_url` string, nullable
    - `phones` PhoneOut[]
      - `id` string, nullable
      - `type` string, nullable
      - `raw` string, nullable
      - `country` string, nullable
      - `e164` string, nullable
      - `extension` string, nullable
    - `is_primary` boolean
    - `is_connected` boolean
    - `owner_account_id` integer, nullable
    - `created_at` string, nullable
    - `updated_at` string, nullable
  - `pagination` union, required
    - CursorPaginationResponse
      - `total` integer, required
      - `limit` integer, required
      - `cursor` string, nullable, required
      - `has_more` boolean, required
      - `next_cursor` string, nullable, required
    - OffsetPaginationResponse
      - `total` integer, required
      - `limit` integer, required
      - `offset` integer, required
      - `has_more` boolean, required

## Other responses

- `422` — Validation Error

---

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