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

# List Contacts

`GET /contacts`

Lists contacts with filtering, search, and pagination.
Supports filtering by team, campaign, and status.

## Query parameters

- `TeamId` string, uuid
- `CampaignId` string, uuid
- `limit` integer
- `offset` integer
- `search` string
- `interest` string

## Response `200`

List of contacts

- ContactListResponse
  - `success` boolean
  - `request_id` string
  - `data` Contact[]
    - `id` string, uuid
    - `email` string, email
    - `first_name` string
    - `last_name` string
    - `company` string
    - `title` string
    - `linkedin_url` string, uri
    - `phone` string
    - `website` string
    - `interest` string — Contact status - interested, not_interested, meeting_request, meeting_booked, customer, future, follow_up
    - `finished` boolean
    - `deleted` boolean
    - `custom` object
    - `team_id` string, uuid
    - `campaign_id` string, uuid
    - `created_at` string, date-time
    - `updated_at` string, date-time
  - `pagination` Pagination
    - `limit` integer
    - `offset` integer
    - `total` integer
    - `has_more` boolean

## Other responses

- `401` — Unauthorized - Invalid or missing API key
- `403` — Forbidden - Access denied

---

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