Astar
About
Build dApps across multiple blockchains seamlessly.
Full Coverage
Stack
Symbol
ASTR
Gas Token
ASTR
Chain ID:
592
Socials
Tools
Live ASTR Market Data Across Global Currencies
Access Astar via Uniblock's unified blockchain API. Multi-Chain DApp Hub Build dApps across multiple blockchains seamlessly.
Code Snippet
INPUT
const options = {method: 'GET', headers: {accept: 'application/json'}};
fetch('https://api.uniblock.dev/uni/v1/market-data/price?symbol=ASTR', options)
.then(response => response.json())
.then(response => console.log(response))
.catch(err => console.error(err));
OUTPUT
{
"ASTR": {
"btc": 0.00000102,
"eth": 0.00002541,
"bnb": 0.00011514,
"xrp": 0.10607911,
"usd": 0.063537,
"aud": 0.092193,
"cad": 0.085743,
"eur": 0.057399,
"gbp": 0.04784563,
"hkd": 0.493866,
"jpy": 9.13,
"rub": 6.09
}
}