Skip to main content
GET
/
v1
/
wallets
/
{wallet_id}
/
balance
Get wallet balance
curl --request GET \
  --url https://api.clearbox.example.com/v1/wallets/{wallet_id}/balance \
  --header 'Authorization: Bearer <token>'
{
  "wallet_id": "<string>",
  "currency": "USDC",
  "settled": "100.00",
  "available": "85.00",
  "holds": "15.00"
}

Documentation Index

Fetch the complete documentation index at: https://docs.clear-box.io/llms.txt

Use this file to discover all available pages before exploring further.

Authorizations

Authorization
string
header
required

ClearBox API key. Use cb_sandbox_... in the sandbox and cb_live_... in production.

Path Parameters

wallet_id
string
required
Example:

"wlt_5c1d"

Response

The current balances.

wallet_id
string
currency
string
Example:

"USDC"

settled
string
Example:

"100.00"

available
string
Example:

"85.00"

holds
string
Example:

"15.00"