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

# Get Wallet Balance

> Get your current wallet balance

Get the current wallet balance, including available credits, pending charges, and auto-reload settings.

<RequestExample>
  ```bash cURL theme={null}
  curl https://api.v2.dealmachine.com/v1/mail/wallet/balance \
    -H "Authorization: Bearer dm_sk_live_xxx"
  ```
</RequestExample>

<ResponseExample>
  ```json 200 theme={null}
  {
    "data": {
      "balance_cents": 25000,
      "available_cents": 20000,
      "pending_cents": 5000,
      "balance_formatted": "250.00",
      "available_formatted": "200.00",
      "lifetime_credits_cents": 100000,
      "lifetime_spent_cents": 75000,
      "auto_reload": {
        "enabled": true,
        "threshold_cents": 1000,
        "amount_cents": 5000
      }
    }
  }
  ```
</ResponseExample>
