List broadcasts
GET/api/v1/broadcasts
scope
broadcasts:readPaginatedCampaigns newest first, with their delivery counters.
Query parameters
| Name | Type | Description |
|---|---|---|
limitoptional | integer | Page size, 1–100Default: 20 |
cursoroptional | string | The `next_cursor` from the previous page |
statusoptional | string (enum) | draftscheduledsendingsentfailed |
Request
curl "https://your-crm.example.com/api/v1/broadcasts?status=sending" \
-H "Authorization: Bearer $RAABTA_API_KEY"Response · 200 OK
{
"data": [
{
"id": "a7b8c9d0-e1f2-4a3b-8c4d-5e6f7a8b9c0d",
"name": "September reminders",
"kind": "template",
"channel": "whatsapp",
"template": {
"name": "appointment_reminder",
"language": "en_US"
},
"status": "sending",
"scheduled_at": "2026-09-02T10:00:00.000Z",
"counts": {
"total": 240,
"sent": 120,
"delivered": 96,
"read": 40,
"replied": 3,
"failed": 2
},
"created_at": "2026-09-02T10:00:00.000Z",
"updated_at": "2026-09-02T10:02:00.000Z"
}
],
"meta": {
"next_cursor": null,
"has_more": false,
"limit": 20
}
}Response
Wrapped in { data: [...], meta }| Name | Type | Description |
|---|---|---|
idrequired | string (uuid) | UUID |
namerequired | string | Campaign name, as shown in the dashboard |
kindrequired | string (enum) | template = an approved WhatsApp template; free_text = a personal-WhatsApp messagetemplatefree_text |
channelrequired | string | whatsapp | personal_whatsapp |
templaterequired | object | null | The template a template broadcast sends |
template.namerequired | string | |
template.languagerequired | string | |
statusrequired | string (enum) | draft → scheduled → sending → sent | faileddraftscheduledsendingsentfailed |
scheduled_atrequired | string (date-time) | null | When it was (or will be) started |
countsrequired | object | Live delivery counters — poll this endpoint for progress |
counts.totalrequired | integer | Recipients materialised |
counts.sentrequired | integer | Handed to the channel |
counts.deliveredrequired | integer | Confirmed delivered to the handset |
counts.readrequired | integer | Confirmed read |
counts.repliedrequired | integer | Recipients who replied |
counts.failedrequired | integer | Rejected by the channel |
created_atrequired | string (date-time) | ISO 8601 timestamp |
updated_atrequired | string (date-time) | ISO 8601 timestamp |
Errors
| Status | Code | When |
|---|---|---|
| 400 | bad_request | The request could not be parsed: malformed JSON, an invalid cursor, or a query parameter of the wrong shape. |
| 400 | validation_error | The body or query failed validation. `details` lists each failing field with a `path` and a `message`. |
| 401 | unauthorized | No usable API key: the Authorization header is missing or malformed, or the key is unknown, revoked or expired. The three are deliberately indistinguishable. |
| 403 | forbidden | The key is valid but lacks the scope this endpoint requires, or the request came from an address outside the key’s IP allowlist. The message says which. |
| 403 | account_suspended | The account this key belongs to is suspended. Rotating the key will not help; contact support. |
| 429 | rate_limited | The per-key budget, or the per-IP budget for failed authentication, is exhausted. Honour `Retry-After` before retrying. |
| 500 | internal | Something failed on our side. Safe to retry with the same Idempotency-Key; quote `request_id` if it persists. |