---
title: "List templates"
method: GET
path: "/api/v1/templates"
tags: ["WhatsApp templates"]
---

# List templates

`GET /api/v1/templates`

List your WhatsApp templates and each one's approval status. Reviews are async (~24–48h) — re-read to see updates.

## Query parameters

- `status` 'DRAFT' | 'PENDING' | 'APPROVED' | 'REJECTED'
- `category` 'UTILITY' | 'MARKETING' | 'AUTHENTICATION'
- `contentType` 'TEXT' | 'MEDIA' | 'QUICK_REPLY' | 'CALL_TO_ACTION' | 'CARD'

## Response `200`

Success

- object
  - `data` object[], required
    - `id` string, required — Template id.
    - `name` string, required — Template name (unique per WhatsApp number).
    - `language` string, required — WhatsApp language code the template was created for, e.g. `es_MX`.
    - `category` 'UTILITY' | 'MARKETING' | 'AUTHENTICATION', required
    - `contentType` 'TEXT' | 'MEDIA' | 'QUICK_REPLY' | 'CALL_TO_ACTION' | 'CARD', required
    - `content` unknown, required
    - `variables` object, nullable, required — Example values for `{{1}}`-style placeholders.
    - `phoneNumbers` string[], required — WhatsApp numbers this template can be sent from.
    - `status` 'DRAFT' | 'PENDING' | 'APPROVED' | 'REJECTED', required — DRAFT (not yet submitted), PENDING (in WhatsApp review, typically 24-48h), APPROVED, or REJECTED (see rejectionReason).
    - `rejectionReason` string, nullable, required
    - `createdAt` string, required — ISO 8601 timestamp.
    - `updatedAt` string, required — ISO 8601 timestamp.
  - `next_cursor` unknown, 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)
