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

# Get Balance

> Check your wallet balances and daily limits

## Request

```bash theme={null}
curl https://api.midasprotocol.org/wallets/balance \
  -H "Authorization: Bearer pp_your_key"
```

## Response

```json theme={null}
{
  "walletId": "uuid",
  "balances": {
    "EUR": "150.00",
    "USDC": "500.00"
  },
  "dailyLimit": "1000.00",
  "spentToday": "25.00",
  "lastResetDate": "2026-01-01"
}
```
