v1
latestOpenAPI 3.1.02026-07-24223580832.9 KBBalances & 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
Example response
[
{
"currency": {
"asset_path": "ethereum/native/eth",
"symbol": "ETH",
"name": "Ether",
"decimals": 18
},
"confirmed_block": 1313
}
]