absolutepay (Node SDK) - v0.7.1
    Preparing search index...

    Read the workspace's asset balances (scope: balances:read).

    Index

    Constructors

    Methods

    Constructors

    Methods

    • List every asset balance held by the workspace.

      Returns Promise<Page<Balance>>

      The raw { items, nextCursor } (nextCursor always null) of Balance (available + locked per currency).

      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);