Skip to main content
Stablecoin Account API Publisher Disclaimer Every currency you hold — crypto or fiat — lives in its own wallet with a balance_id. Wallets are created automatically the first time you receive a currency; there is no create-wallet endpoint. Use the Assets endpoints to read balances and reconcile the transactions behind them.

List all balances

Call List Assets to page through every wallet on the account. Filter by balance_currency or balance_status (Pending, Active, Closed) if you only need a subset.
Response (abbreviated):
Only available_balance can be spent. Funds tied up by in-flight withdrawals, conversions, or risk review sit in frozen_balance until the order settles.

Retrieve one balance

When you already know the currency, fetch it directly with Retrieve Asset:
The response carries a single asset object with the same fields as the list.

Review transaction history

List Asset Transactions returns one unified ledger covering all order types — deposits, withdrawals, conversions (Sell / Buy / Swap), and transfers — so you can reconcile balances without calling each resource’s list endpoint separately.
Useful filters: Each transaction reports the sold side (sell_currency / sell_amount), the bought side for conversions (buy_currency / buy_amount), and the fees charged (network_fee, processing_fee).
For drill-down details beyond the ledger row — for example a withdrawal’s destination address or transaction hash — retrieve the order from its own resource using the order_id: Retrieve Deposit, Retrieve Withdraw, Retrieve Conversion, or Retrieve Transfer.