> ## 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 Balance

Get current SMS credit balance.

## Success Response (200)

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

<ResponseField name="balance" type="object">
  Balance information
</ResponseField>

<ResponseExample>
  ```json theme={null}
  {
    "success": true,
    "balance": {
      "credits": 1000,
      "currency": "USD",
      "last_updated": "2025-11-27T10:30:00Z"
    }
  }
  ```
</ResponseExample>
