Read the workspace's asset balances (scope: balances:read).
balances:read
List every asset balance held by the workspace.
The raw { items, nextCursor } (nextCursor always null) of Balance (available + locked per currency).
{ items, nextCursor }
null
On failure (e.g. 401/403 missing balances:read, 429 rate limit).
const { items } = await client.balances.list();for (const b of items) console.log(b.currency, b.available); Copy
const { items } = await client.balances.list();for (const b of items) console.log(b.currency, b.available);
Read the workspace's asset balances (scope:
balances:read).