Avalanche
About
Deploy Ethereum-compatible dApps with lightning speed.
Full Coverage
Stack
Symbol
AVAX
Gas Token
AVAX
Chain ID:
43114
Testnet Chain ID:
43113
Real-Time AVAX Pricing at Sub-Second Speed
Access Avalanche via Uniblock's unified blockchain API. High-Performance Smart Contracts Deploy Ethereum-compatible dApps with lightning speed.
Code Snippet
INPUT
const options = {method: 'GET', headers: {accept: 'application/json'}};
fetch('https://api.uniblock.dev/uni/v1/market-data/price?symbol=AVAX', options)
.then(response => response.json())
.then(response => console.log(response))
.catch(err => console.error(err));
OUTPUT
{
"AVAX": {
"btc": 0.00042108,
"eth": 0.01044923,
"bnb": 0.04746835,
"xrp": 43.595562,
"usd": 26.06,
"aud": 37.82,
"cad": 35.16,
"eur": 23.54,
"gbp": 19.62,
"hkd": 202.56,
"jpy": 3742.89,
"rub": 2497.73
}
}