Get the status of a queued SMS message.
Use this endpoint to check if a queued SMS has been delivered, is still pending, or has failed.
Args: message_id: The unique message ID returned when queueing the SMS
Returns: SMSStatusResponse: Current status of the message
Check the current status of a queued SMS message. Use theDocumentation Index
Fetch the complete documentation index at: https://docs.burki.dev/llms.txt
Use this file to discover all available pages before exploring further.
message_id returned by Send SMS. For queued sends, this is Burki’s internal queue UUID. When the provider returns its own ID, it appears as provider_message_id.
message_id (string, required): The Burki message ID returned by POST /sms/send.| Status | Description |
|---|---|
queued | Message is waiting in Burki’s provider queue |
sending | Message is currently being sent |
sent | Provider accepted or delivered the message |
failed | Sending failed; inspect error |
cancelled | Message was cancelled before delivery |
Bearer authentication header of the form Bearer <token>, where <token> is your auth token.
Successful Response
Response model for SMS status endpoint.