Get message status
/chats/{chatId}/messages/{messageId}/statusGet delivery status for a specific message.
Path parameters
chatIdRequiredstringChat identifier. Can be: (1) phone number in E.164 format (e.g., +15551234567), (2) email address, (3) group ID (grp_xxxx), or (4) comma-separated list of phone numbers/emails for multi-recipient group chats (e.g., +15551234567,+15559876543). All values should be URL-encoded.
messageIdRequiredstringUnique identifier of the message, prefixed with msg_ (e.g. msg_abc123def456). Returned in the response when you send a message and in inbound message webhooks.
Headers
AuthorizationRequiredstringYour API key, sent as a bearer token: Authorization: Bearer <api_key>. Editing this stays in sync with the API key box on the right.
Returns
message_idoptionalstringchat_idoptionalstringdirectionoptionalstring"inbound""outbound"statusoptionalstringDelivery lifecycle state. pending = persisted and being prepared for dispatch; queued = accepted and waiting to be handed to Apple/the carrier; sent = handed off to Apple/the carrier (protocol resolution happens around here); delivered = a delivery receipt was received; failed = could not be delivered (see error); cancellation_requested = a cancel was requested for a still-queued message (best-effort); cancelled = cancelled before dispatch. Inbound messages are surfaced via webhooks with received; read receipts arrive as a read event.
"pending""queued""sent""delivered""failed""cancellation_requested""cancelled"protocoloptionalstringTransport used to carry the message; never null. pending = accepted and dispatched, wire service not resolved yet (settles within seconds of send); imessage = delivered over iMessage (blue bubble); rcs = delivered over RCS; sms = fell back to SMS/MMS (green bubble); unknown = accepted by the carrier but the wire service could not be resolved before the tracking window closed (see error).
"pending""unknown""imessage""sms""rcs"time_sentoptionalintegertime_deliveredoptionalinteger | nullerroroptionalstring | nullResponse codes
Sends a live request with your values and shows the real response below. Your key is stored only in this browser.
curl -X GET https://api.blooio.com/v2/api/chats/chat_a1b2c3d4/messages/msg_abc123def456/status \{ "message_id": "msg_a1b2c3d4", "chat_id": "chat_a1b2c3d4", "direction": "inbound", "status": "pending", "protocol": "pending", "time_sent": 0, "time_delivered": 0, "error": "string"}