Celestia
About
Simplify blockchain deployment with modular architecture.
Partial Coverage
Stack
Symbol
TIA
Gas Token
Chain ID:
ripple
Testnet Chain ID:
mocha-4
Real-Time TIA Market Data in One API Call
Access Celestia via Uniblock's unified blockchain API. Modular and Scalable Blockchain Simplify blockchain deployment with modular architecture.
Code Snippet
INPUT
const options = {method: 'GET', headers: {accept: 'application/json'}};
fetch('https://api.uniblock.dev/uni/v1/market-data/price?symbol=CEl', options)
.then(response => response.json())
.then(response => console.log(response))
.catch(err => console.error(err));
OUTPUT
{
"CEL": {
"btc": 0.0000049,
"eth": 0.00012199,
"bnb": 0.00055115,
"xrp": 0.50678241,
"usd": 0.302898,
"aud": 0.441362,
"cad": 0.409241,
"eur": 0.274127,
"gbp": 0.228655,
"hkd": 2.35,
"jpy": 43.44,
"rub": 29.03
}
}