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

# 查询用户余额

> 查询当前用户账户的总余额

## 请求示例

```bash cURL theme={null}
curl https://api.qclawrouter.com/v1/user/balance \
  -H "Authorization: Bearer sk-your-api-key"
```

## 返回示例

```json theme={null}
{
  "object": "user_balance",
  "total_balance": 10.50,
  "used_balance": 2.30,
  "remaining_balance": 8.20,
  "currency": "USD"
}
```
