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

# List Contacts

`GET /v1/contacts`

List all contacts for this account.

Optional `search` query filters by name or phone number (case-insensitive contains).

## Query parameters

- `search` string, nullable
- `limit` integer
- `offset` integer

## Response `200`

Successful Response

- ContactListResponse
  - `data` ContactResponse[], required
    - `id` string, required
    - `phoneNumber` string, required
    - `name` string, required
    - `email` string, nullable
    - `notes` string, nullable
    - `createdAt` string, date-time, required
    - `updatedAt` string, date-time, required
  - `hasMore` boolean, required
  - `total` integer, required

## Other responses

- `422` — Validation Error

---

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