whatsapp
List broadcasts
List all WhatsApp broadcasts for an account. Returns broadcasts sorted by creation date (newest first) without the full recipients list for performance.
AuthorizationBearer <token>
API key authentication - use your Late API key as a Bearer token
In: header
Query Parameters
accountIdstring
WhatsApp social account ID
status?string
Filter by broadcast status
Value in
"draft" | "scheduled" | "sending" | "completed" | "failed" | "cancelled"limit?integer
Maximum results (default 50)
Default
50skip?integer
Offset for pagination
Default
0Response Body
application/json
application/json
curl -X GET "https://getlate.dev/api/v1/whatsapp/broadcasts?accountId=string"{
"success": true,
"broadcasts": [
{
"id": "string",
"name": "string",
"description": "string",
"template": {
"name": "string",
"language": "string"
},
"status": "draft",
"recipientCount": 0,
"scheduledAt": "2019-08-24T14:15:22Z",
"startedAt": "2019-08-24T14:15:22Z",
"completedAt": "2019-08-24T14:15:22Z",
"sentCount": 0,
"deliveredCount": 0,
"readCount": 0,
"failedCount": 0,
"createdAt": "2019-08-24T14:15:22Z"
}
],
"pagination": {
"total": 0,
"limit": 0,
"skip": 0,
"hasMore": true
}
}Empty
{
"error": "Unauthorized"
}Empty