Skip to main content
GET
/
sms
/
queue
/
stats
{
  "timestamp": "<string>",
  "queues": {}
}

Documentation Index

Fetch the complete documentation index at: https://docs.burki.dev/llms.txt

Use this file to discover all available pages before exploring further.

Inspect SMS queue statistics for provider-level monitoring.

Query Parameters

  • provider (string, optional): Filter queue stats to one provider. Supported values include twilio, telnyx, and vonage.

Response

Response
{
  "timestamp": "2026-04-30T10:15:00Z",
  "queues": {
    "twilio": {
      "pending": 2,
      "active": 1,
      "failed": 0
    },
    "telnyx": {
      "pending": 0,
      "active": 0,
      "failed": 0
    },
    "vonage": {
      "pending": 1,
      "active": 0,
      "failed": 0
    }
  }
}
The exact queue keys may vary as the queue service evolves, but the response always includes a timestamp and a queues object keyed by provider.

Authorizations

Authorization
string
header
required

Bearer authentication header of the form Bearer <token>, where <token> is your auth token.

Query Parameters

provider
string | null

Response

Successful Response

Response model for SMS queue statistics.

timestamp
string
required
queues
Queues · object
required

Queue statistics per provider