Cronos
About
Powering the next generation of DeFi and NFT applications.
Partial Coverage
Stack
Symbol
CRO
Gas Token
CRO
Chain ID:
25
Testnet Chain ID:
338
Socials
Tools
Real-Time CRO DeFi Pricing in One Call
Access Cronos via Uniblock's unified blockchain API. DeFi and NFT Hub Powering the next generation of DeFi and NFT applications.
Code Snippet
INPUT
const options = {method: 'GET', headers: {accept: 'application/json'}};
fetch('https://api.uniblock.dev/uni/v1/market-data/price?symbol=CRO', options)
.then(response => response.json())
.then(response => console.log(response))
.catch(err => console.error(err));
OUTPUT
{
"CRO": {
"btc": 0.00000128,
"eth": 0.00003186,
"bnb": 0.00014437,
"xrp": 0.13312907,
"usd": 0.079617,
"aud": 0.115526,
"cad": 0.107444,
"eur": 0.071927,
"gbp": 0.059955,
"hkd": 0.618859,
"jpy": 11.45,
"rub": 7.63
}
}