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

# List contacts

`GET /v1/contacts`

List and search contacts for a profile. Supports filtering by tags, platform, subscription status, and full-text search.

## Query parameters

- `profileId` string
- `accountId` string
- `search` string
- `tag` string
- `tags` string
- `platform` 'instagram' | 'facebook' | 'telegram' | 'twitter' | 'bluesky' | 'reddit' | 'whatsapp'
- `isSubscribed` 'true' | 'false'
- `limit` integer
- `skip` integer

## Response `200`

Contacts list with pagination and filter metadata

- object
  - `success` boolean
  - `contacts` object[]
    - `id` string
    - `name` string
    - `email` string
    - `company` string
    - `avatarUrl` string
    - `tags` string[]
    - `isSubscribed` boolean
    - `isBlocked` boolean
    - `lastMessageSentAt` string, date-time
    - `lastMessageReceivedAt` string, date-time
    - `messagesSentCount` integer
    - `messagesReceivedCount` integer
    - `customFields` object
    - `notes` string
    - `createdAt` string, date-time
    - `platform` string
    - `platformIdentifier` string
    - `displayIdentifier` string
  - `filters` object
    - `tags` string[]
  - `pagination` object
    - `total` integer
    - `limit` integer
    - `skip` integer
    - `hasMore` boolean

## Other responses

- `400` — Invalid request
- `401` — Unauthorized

---

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