Radix
About
Build and scale DeFi applications with Radix's secure blockchain.
Partial Coverage
Stack
Symbol
XRD
Gas Token
Chain ID:
1
Tools
Live XRD DeFi Pricing Across Global Markets
Access Radix via Uniblock's unified blockchain API. Scalable and Developer-Friendly DeFi Platform Build and scale DeFi applications with Radix's secure ...
Code Snippet
INPUT
const options = {method: 'GET', headers: {accept: 'application/json'}};
fetch('https://api.uniblock.dev/uni/v1/market-data/price?symbol=XRD', options)
.then(response => response.json())
.then(response => console.log(response))
.catch(err => console.error(err));
OUTPUT
{
"XRD": {
"btc": 2.91519e-7,
"eth": 0.00000726,
"bnb": 0.00003281,
"xrp": 0.03017914,
"usd": 0.01805719,
"aud": 0.02631167,
"cad": 0.0243968,
"eur": 0.01634197,
"gbp": 0.01363121,
"hkd": 0.140359,
"jpy": 2.59,
"rub": 1.73
}
}