---
title: "List Campaigns"
method: GET
path: "/campaigns"
tags: ["Campaigns"]
---

# List Campaigns

`GET /campaigns`

Lists campaigns with filtering and pagination.

## Query parameters

- `TeamId` string, uuid
- `limit` integer
- `offset` integer
- `search` string
- `status` 'active' | 'inactive'

## Response `200`

List of campaigns

- CampaignListResponse
  - `success` boolean
  - `request_id` string
  - `data` Campaign[]
    - `id` string, uuid
    - `name` string
    - `status` 'active' | 'inactive'
    - `disabled` boolean
    - `contact_count` integer — Total non-archived contacts (same as contact_metrics.total)
    - `contact_metrics` ContactMetrics — Contact lifecycle metrics for a campaign
      - `total` integer — Total non-archived contacts in campaign
      - `not_started` integer — Contacts that haven't begun the sequence yet (in queue for auto-refill)
      - `in_progress` integer — Contacts currently progressing through the sequence
      - `finished` integer — Contacts that completed the sequence
      - `paused` integer — Contacts currently paused
    - `team_id` string, uuid
    - `created_at` string, date-time
    - `updated_at` string, date-time
  - `pagination` Pagination
    - `limit` integer
    - `offset` integer
    - `total` integer
    - `has_more` boolean

---

[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)
