Wallet
Read balances, list deposit addresses across all 12 supported networks, and pull a unified activity feed. All read endpoints require an API key with the read scope.
Authentication
Pass your API key as a Bearer token. The key must include theread scope — generate one from /settings/security.
Read-bucket rate limits: 120 req/min, 5,000 req/day per key. See Rate limits.
Balances GET /api/v1/wallet/balances
Returns spot balances for every supported asset. Empty assets are included with amount: "0" so you can render a complete table without a second lookup. Amounts are strings — pass through your decimal library, don't parse to JS Number.
Deposit addresses GET /api/v1/wallet/addresses
Returns one deposit address per supported network. Addresses are derived deterministically per account and persisted on first request — subsequent calls return the same address for the same (user, network).
Networks: BTC, BEP20, TRC20, SOL, ETH, ARBITRUM, OPTIMISM, BASE, AVAX, POLYGON, LTC, DOGE.
primaryAsset is the most common token deposited on each rail. Other tokens with the same address format also work (e.g. USDC on BEP20 lands on the same address as USDT).
Transactions GET /api/v1/wallet/transactions
Combined activity feed across trades, deposits, withdrawals, P2P, and Quick Trade orders. Sorted newest-first. Cursor-paginated.
Query parameters:
limit— 1 to 200. Default 50.cursor— opaque token from a prior response'snextCursor.
Possible category values: TRADE,DEPOSIT, WITHDRAWAL,P2P, QUICK_TRADE.
Withdrawals POST /api/v1/wallet/withdrawals
Requires an API key with the withdraw scope. When 2FA is enabled on the account, you must include a validtotpCode. If the platform allowlist mode isstrict, the destination must already be approved on /settings/security.
Body fields:
asset— USDT, USDC, BTC, ETH, AVAX, MATIC, BNB, LTC, DOGEnetwork— must support the chosen asset (e.g.TRC20for USDT)amount— decimal stringaddress— destination on-chain addresstotpCode— 6-digit code, required if 2FA is on
Withdraw-bucket rate limits and the same Idempotency-Key contract as orders. Daily limit defaults to $5,000 USDT-equivalent — admins can adjust per-account in the platform settings.