v1

latestOpenAPI 3.1.02026-07-24223580832.9 KB
Balances & UTXO

Get a List of Balances for an Address

Returns a list of account balances by a user-defined account address for the supported currencies.

get/{protocol}/{network}/account/{address}

Path parameters

protocolstring required

Protocol handle, one of: algorand, avalanche, bitcoin, bitcoincash, dogecoin, ethereum, litecoin, near, optimism, polkadot, polygon, solana, stellar, tezos, xrp.

networkstring required

Which network to target. Available networks can be found in the list of supported protocols or with /{protocol}.

addressstring required

The account address of the protocol.

Query parameters

assetsstring

Comma-separated list of asset paths to filter. If the list is empty or all elements are empty, this filter has no effect. Filtering by asset is applicable only for:

  • Balances endpoints: algorand, avalanche, bitcoincash, ethereum, litecoin, optimism, polygon, polkadot, solana
  • Transactions endpoints: algorand, avalanche, ethereum

Find all the asset paths on this page.

Response

Balances

confirmed_balancestring

The balance that can be spent.

pending_balancestring

The balance value from the latest confirmed block.

confirmed_blockinteger

The confirmed block number.

confirmed_nonceinteger

The confirmed nonce of the transaction.

Example response

[
  {
    "currency": {
      "asset_path": "ethereum/native/eth",
      "symbol": "ETH",
      "name": "Ether",
      "decimals": 18
    },
    "confirmed_block": 1313
  }
]