---
title: "List initiatives"
method: GET
path: "/api/v1/initiatives"
tags: ["Initiatives"]
---

# List initiatives

`GET /api/v1/initiatives`

List the organization's initiatives, newest first. Archived initiatives are excluded.

## Query parameters

- `limit` integer — Page size.
- `cursor` string — Opaque token from a prior response’s `next_cursor`.
- `status` string — Comma-separated lifecycle filter, e.g. `DRAFT,ACTIVE`. Allowed: DRAFT, ACTIVE, PAUSED, COMPLETED, CANCELED.

## Response `200`

Success

- object
  - `data` object[], required
    - `id` string, required — Initiative id.
    - `name` string, required
    - `channel` 'WHATSAPP' | 'EMAIL', required
    - `status` 'DRAFT' | 'ACTIVE' | 'PAUSED' | 'COMPLETED' | 'CANCELED', required
    - `language` string, required — Conversation language, e.g. `es`.
    - `objective` string, nullable, required
    - `isRecurring` boolean, required — Whether the initiative keeps processing newly added participants on a schedule.
    - `flagCondition` string, nullable, required — Natural-language condition; matching conversations get flagged during analysis.
    - `identityDeflection` string, nullable, required — Custom reply when a contact asks whether they are talking to a bot.
    - `createdAt` string, required — ISO 8601 timestamp.
    - `updatedAt` string, required — ISO 8601 timestamp.
    - `activatedAt` string, nullable, required
    - `completedAt` string, nullable, required
    - `canceledAt` string, nullable, required
    - `pausedAt` string, nullable, required
  - `next_cursor` string, nullable, required

## Other responses

- `400` — Validation failed or the request cannot proceed.
- `401` — Missing, malformed, or revoked API key.
- `404` — The resource does not exist in this organization.
- `409` — Conflicts with the current state (duplicates, wrong lifecycle state).
- `422` — The request is well-formed but semantically invalid.
- `429` — Rate limit exceeded — retry after `Retry-After`.
- `500` — Internal server error.
- `503` — Transient error — retry with a narrower request.

---

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