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

# GET /api/billing/wallet — 当前钱包余额

> 返回当前预付费钱包余额及其按站点隔离的币种。国际站为美元，中国站为人民币。

返回当前预付费钱包余额及其按站点隔离的币种。`ariacompute.com` 为美元，`ariacompute.cn` 为人民币。币种由站点域名固定，与界面语言无关。

**方法：** `GET` **路径：** `/api/billing/wallet` **认证：** 会话 Bearer

## 响应

<ResponseField name="balance" type="number">
  以返回币种计价的当前钱包余额。
</ResponseField>

<ResponseField name="currency" type="string">
  币种代码（`USD` 或 `CNY`）。
</ResponseField>

<ResponseField name="updated_at" type="string">
  最近一次余额变化的 ISO 8601 时间戳。
</ResponseField>

## 示例

```bash theme={null}
curl -H "Authorization: Bearer eyJhbGciOi..." \
  https://ariacompute.cn/api/billing/wallet
```

```json theme={null}
{
  "balance": 42.10,
  "currency": "CNY",
  "updated_at": "2026-09-23T09:03:12Z"
}
```
