Available Currencies and Tokens

Get to know what currencies and tokens are supported by Blockdaemon's API suite.

The Blockdeamon API Suite provides access to multiple blockchain assets across multiple protocols. Information on assets is returned by Blockdeamon API Suite endpoints when you query accounts, blocks, and transactions.

For some of the supported protocols, multiple currencies and tokens are available. In this case, you can filter the results by the asset. To learn more, see the Filtering by Asset section and the examples below.

In the table below, you will find the full list of available currencies and tokens. The Path column contains asset paths used for filtering by asset.

ProtocolAssetPath
AlgorandALGOalgorand/native/algo
Algorandother assetsalgorand/asset/{id}
AvalancheAVAXavalanche/native/avax
AvalancheERC-20 tokensavalanche/c/contract/{contract_hash}/erc-20
AvalancheERC-721 tokensavalanche/c/contract/{contract_hash}/erc-721
BitcoinBTCbitcoin/native/btc
Bitcoin CashBCHbitcoincash/native/bch
DogecoinDOGEdogecoin/native/doge
EthereumETHethereum/native/eth
EthereumERC-20 tokensethereum/contract/{contract_hash}/erc-20
EthereumERC-721 tokensethereum/contract/{contract_hash}/erc-721
FantomFTMfantom/native/ftm
FantomERC-20 tokensfantom/contract/{contract_hash}/erc-20
FantomERC-721 tokensfantom/contract/{contract_hash}/erc-721
LitecoinLTClitecoin/native/ltc
NEARNEARnear/native/near
OptimismOPoptimism/native/op
OptimismETHethereum/native/eth
OptimismERC-20 tokensethereum/contract/{contract_hash}/erc-20
PolkadotDOTpolkadot/native/dot
PolygonMATICpolygon/native/matic
PolygonERC-20 tokensethereum/contract/{contract_hash}/erc-20
PolygonERC-721 tokensethereum/contract/{contract_hash}/erc-721
SolanaSOLsolana/native/sol
SolanaSPL tokenssolana/mint/{pub_key}
StellarXLMstellar/native/xlm
Stellarother assetsstellar/credit_alphanum4/{code}
stellar/credit_alphanum12/{code}
TezosXTZtezos/native/xtz
XRPXRPripple/native/xrp

Filtering by Asset

Some of the Blockdeamon API Suite endpoints support a query parameter, allowing you to filter results by asset:

  • parameter: assets
  • value: an asset path or a comma-separated list of paths

The path structure for getting native coins is the following:

  • {protocol}/native/{symbol}
  • e.g. ethereum/native/eth

The path for getting tokens and other assets varies from protocol to protocol.

In the sections below, you will find examples of filtering by asset. Please note that only protocols for which the Blockdeamon API Suite supports multiple assets are included.

Supported endpoints

Algorand Examples

The path for the ALGO coin is the following:

  • algorand/native/algo

Other assets are identified by numeric ID:

  • algorand/asset/{id}

The Blockdeamon API Suite supports all Algorand standard assets; some examples are:

NameSymbolID
AKITA INUAKTA523683256
goBTCgoBTC386192725
goETHgoETH386195940
PlanetsPLANET27165954
STBLSTBL465865291
USDC CoinUSDC25077
YieldlyYLDY226701642
Christmas Space Monkey #241S-MONKEY477682918
Hippie Space Monkey #318S-MONKEY617226333

For example, to get the ALGO and USDC balances of a given Algorand Mainnet address, use the assets parameter with the following values:

  • algorand/native/algo
  • algorand/asset/25077
svc.blockdaemon.com/universal/v1/algorand/mainnet/account/QA75IQ76F6H2T55G65BY7BPLF5QNWSLT5XGI62COZSYB4ZQ3MSKI3EQ25A?assets=algorand/native/algo,algorand/asset/25077

Learn more about the endpoint: GET Balances of Address.

Ethereum Examples

The path for the ETH coin is the following:

  • ethereum/native/eth

ERC-20 tokens are identified by contract hash:

  • ethereum/contract/{contract_hash}/erc-20

The Blockdeamon API Suite supports all ERC-20 tokens; some examples are:

NameContract HashSymbol
ApeCoin0x4d224452801aced8b2f0aebe155379bb5d594381APE
Chainlink Token0x514910771af9ca656af840dff83e8264ecf986caLINK
Dai Stablecoin0x6b175474e89094c44da98b954eedeac495271d0fDAI
Matic Token0x7d1afa7b718fb893db30a3abc0cfc608aacfebb0MATIC
Tether USD0xdac17f958d2ee523a2206206994597c13d831ec7USDT
SHIBA INU0x95ad61b0a150d79219dcf64e1e6cc01f0b64c4ceSHIB
USD Coin0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48USDC
Wrapped BTC0x2260fac5e5542a773aa44fbcfedf7c193bc2c599WBTC

For example, to get the ETH and USDT of a given Ethereum Mainnet address, use the assets parameter with the following values:

  • ethereum/native/eth
  • ethereum/contract/0xdac17f958d2ee523a2206206994597c13d831ec7/erc-20
svc.blockdaemon.com/universal/v1/ethereum/mainnet/account/0x3cd751e6b0078be393132286c442345e5dc49699?assets=ethereum/native/eth,ethereum/contract/0xdac17f958d2ee523a2206206994597c13d831ec7/erc-20

Learn more about the endpoint: GET Balances of Address

Solana Examples

The path for the SOL coin is the following:

  • solana/native/sol

SPL tokens are identified by pubkey:

  • solana/mint/{pub_key}

The Blockdeamon API Suite supports all SPL tokens; some examples are:

NameSymbolPubkey
Audius (Portal)AUDIO9LzCMqDgTKYz9Drzqnpgee3SGa89up3a247ypMj2xrqM
MangoMNGOMangoCzJ36AjZyKwVj3VnYU4GTonjfVEnJmvvWaxLac
Plutonian DAOPLD2cJgFtnqjaoiu9fKVX3fny4Z4pRzuaqfJ3PBTMk2D9ur
RaydiumRAY4k3Dyjzvzp8eMZWUXbBCjEvwSkkk59S5iCNLY3QrkX6R
Republic CreditsRPCEAefyXw6E8sny1cX3LTH6RSvtzH6E5EFy1XsE2AiH1f3
SerumSRMSRMuApVNdxXokk5GT7XD5cUUgXMBCoAz2LHeuAoKWRt

For example, to get the SOL and PLD balances of a given Solana Mainnet address, use the assets parameter with the following values:

  • solana/native/sol
  • solana/mint/2cJgFtnqjaoiu9fKVX3fny4Z4pRzuaqfJ3PBTMk2D9ur
svc.blockdaemon.com/universal/v1/solana/mainnet/account/BkJfuow72HkBGZMNGJQDwiPYmjvyu9DsgWxaFBVP5o2X?assets=solana/native/sol,solana/mint/2cJgFtnqjaoiu9fKVX3fny4Z4pRzuaqfJ3PBTMk2D9ur

Learn more about the endpoint: GET Balances of Address

Stellar Examples

The path for the XLM coin is the following:

  • stellar/native/xlm

Other assets are identified by code (symbol):

  • stellar/credit_alphanum4/{code}
  • stellar/credit_alphanum12/{code}

Stellar supports two code types, 4- and 12-character maximum; some examples are:

NameSymbolTypeCode
AquaAQUAcredit_alphanum4aqua
IxiniumXXAcredit_alphanum4xxa
MobiusMOBIcredit_alphanum4mobi
Tether USDUSDTcredit_alphanum4usdt
yXLMyXLMcredit_alphanum4yxlm
Bitcoin LightningBTCLNcredit_alphanum12btcln
PolygonMATICcredit_alphanum12matic
yUSDCyUSDCcredit_alphanum12yusdc

For example, to get the XLM and MATIC balances of a given Stellar Mainnet address, use the assets parameter with the following values:

  • stellar/native/xlm
  • stellar/credit_alphanum12/matic
svc.blockdaemon.com/universal/v1/stellar/mainnet/account/GBIBSQ36BXMS2N6HIFLWGU3K2G7XJZIWI2R4GEBCJAOWIELJBRXVFH5J?assets=stellar/native/xlm,stellar/credit_alphanum12/matic

Learn more about the endpoint: GET Balances of Address

👋 Need Help?

Contact us through email or our support page for any issues, bugs, or assistance you may need.