How to get started building on Avalanche
You'll need to create a free All That Node account first!
What is the Avalanche?
Avalanche is a fast, smart contract platform built to power a scalable ecosystem of decentralized applications with exceptional transaction finality and low costs.
For more information on Avalanche, please check out the official documentation.
Endpoints
Network | ChainId | Endpoint |
---|---|---|
Mainnet | 0xa86a(43114) | https://avalanche-mainnet-rpc.allthatnode.com |
Fuji | 0xa869(43113) | https://avalanche-fuji-rpc.allthatnode.com |
*Find 'YOUR-API-KEY' by going to the Dashboard menu (Dashboard > All Projects > Project Detail Page).
Sample
Request
curl https://avalanche-mainnet-rpc.allthatnode.com/'YOUR-API-KEY' \
--request POST \
--header "Content-Type: application/json" \
--data '{ "jsonrpc":"2.0", "method":"eth_blockNumber","params":[],"id":1}'
Response
{
"jsonrpc": "2.0",
"result": "0x23ac1e8",
"id": 1
}