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

# GET /api/billing/wallet — current wallet balance

> Return the current prepaid wallet balance and its site-scoped currency. USD on the international site, CNY on the China site.

Return the current prepaid wallet balance and its site-scoped currency. USD on `ariacompute.com`, CNY on `ariacompute.cn`. Currency is fixed by the site domain regardless of UI language.

**Method:** `GET` **Path:** `/api/billing/wallet` **Auth:** Session Bearer

## Response

<ResponseField name="balance" type="number">
  Current wallet balance in the returned currency.
</ResponseField>

<ResponseField name="currency" type="string">
  Currency code (`USD` or `CNY`).
</ResponseField>

<ResponseField name="updated_at" type="string">
  ISO 8601 timestamp of the last balance change.
</ResponseField>

## Example

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

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


## Related topics

- [GET /api/billing/summary — wallet and recent activity](/api-reference/billing/summary.md)
- [GET /api/billing/payments — list wallet top-ups](/api-reference/billing/payments-list.md)
- [GET /api/billing/transactions — wallet transaction history](/api-reference/billing/transactions.md)
- [POST /api/billing/payments — start a wallet top-up](/api-reference/billing/payments-create.md)
- [Prepaid wallet, top-ups, and usage billing](/concepts/wallet-billing.md)
