TABLE OF CONTENTS
Making an RPC-Node call
Tatum supports a long list of chains via RPC Nodes. You can find the API documentation at the following link.
Considering the default request URL: {{baseUrl}}/v3/blockchain/node/:chain/:path
See an example request against Tatum Ethereum RPC nodes:
curl --location --request POST 'https://api.tatum.io/v3/blockchain/node/ETH' \ --header 'x-api-key: ##Mainnet_API_KEY' \ --header 'Content-Type: application/json' \ --data-raw '{ "jsonrpc":"2.0", "method":"eth_blockNumber", "params":[], "id":1 }' //Response: { "jsonrpc": "2.0", "id": 1, "result": "0xfc186e" }
Use :path for specific methods. Example: {{baseUrl}}/v3/blockchain/node/TRON/wallet/gettransactioninfobyblocknum
Supported Chains
Name | :chain |
---|---|
Algorand | ALGO |
Arbitrum | ARB |
Aurora | AURORA |
Avalanche C-Chain | AVAX |
Avalanche P-Chain | AVAX |
Avalanche X-Chain | AVAX |
Bitcoin | BTC |
Bitcoin Cash | BCH |
BNB Beacon Chain | BNB |
BNB Smart Chain | BSC |
Cardano | ADA |
Celo | CELO |
Cronos | CRO |
Dogecoin | DOGE |
Elrond | EGLD |
EOSIO | EOS |
Ethereum | ETH |
Fantom | FTM |
Flow | FLOW |
Gnosis | GNO |
Harmony | ONE |
Klaytn | KLAY |
KuCoin Community Chain | KCS |
Kusama | KSM |
Lisk | LISK |
Litecoin | LTC |
NEAR | NEAR |
Neo | NEO |
Oasis Network | OASIS |
Optimism | OPTIMISM |
Palm | PALM |
Polkadot | DOT |
Polygon | MATIC |
RSK | RSK |
Solana | SOL |
Stellar | XLM |
Tezos | TEZOS |
TRON | TRON |
VeChain | VET |
XinFin | XDC |
XRP | XRP |
ZCash | ZCASH |
Zilliqa | ZIL |
Was this article helpful?
That’s Great!
Thank you for your feedback
Sorry! We couldn't be helpful
Thank you for your feedback
Feedback sent
We appreciate your effort and will try to fix the article