> ## Documentation Index
> Fetch the complete documentation index at: https://docs-sms.mifumolabs.com/llms.txt
> Use this file to discover all available pages before exploring further.

# Get SMS Stats

Get SMS statistics for the current period.

## Success Response (200)

<ResponseField name="success" type="boolean">
  Operation success status
</ResponseField>

<ResponseField name="stats" type="object">
  Statistics data
</ResponseField>

<ResponseExample>
  ```json theme={null}
  {
    "success": true,
    "stats": {
      "total_sent": 1500,
      "total_delivered": 1450,
      "total_failed": 50,
      "delivery_rate": 96.67,
      "total_cost": 75.00,
      "currency": "USD",
      "period": {
        "start": "2025-11-01T00:00:00Z",
        "end": "2025-11-27T23:59:59Z"
      }
    }
  }
  ```
</ResponseExample>
