Messages

Get message delivery status

Returns the aggregated delivery status of an outbound message sent by the connected device: pending (sent, no receipt yet) -> delivered -> read -> played. Backed by persisted WhatsApp receipts. For group messages the timestamps reflect the first/any participant.

GET
/messages/{id}/status

Returns the aggregated delivery status of an outbound message sent by the connected device: pending (sent, no receipt yet) -> delivered -> read -> played. Backed by persisted WhatsApp receipts. For group messages the timestamps reflect the first/any participant.

Authorization

bearerAuth
AuthorizationBearer <token>

Per-user API token (UUID v4) sent as Authorization: Bearer <token>. Identifies the tenant and user.

In: header

Path Parameters

id*string

WhatsApp message id (as returned by a send endpoint).

Response Body

application/json

application/json

application/json

curl -X GET "https://example.com/messages/3EB0XXXX1234ABCD/status"
{  "success": true,  "message_id": "3EB0XXXX1234ABCD",  "chat_jid": "5511999999999@s.whatsapp.net",  "is_group": false,  "status": "read",  "delivered_at": "2026-06-16T12:00:01Z",  "read_at": "2026-06-16T12:00:30Z",  "played_at": null}
{  "success": false,  "error": "validation failed",  "error_code": "VALIDATION_ERROR",  "timestamp": "2026-06-15T12:00:00Z"}
{  "success": false,  "error": "validation failed",  "error_code": "VALIDATION_ERROR",  "timestamp": "2026-06-15T12:00:00Z"}