Secure and Decentralized Predictions
Build secure and decentralized prediction markets.
Security
Strong cryptographic guarantees for user funds.
Decentralization
Fully decentralized platform for predictions.
Transparency
Transparent processes and outcomes.
Developer Tools
Comprehensive resources for building prediction dApps.
Real-Time GNO Pricing for Prediction Markets
Access GNOSIS via Uniblock's unified blockchain API. Secure and Decentralized Predictions Build secure and decentralized prediction markets.
INPUT
const options = {method: 'GET', headers: {accept: 'application/json'}};
fetch('https://api.uniblock.dev/uni/v1/market-data/price?symbol=GNO', options)
.then(response => response.json())
.then(response => console.log(response))
.catch(err => console.error(err));
OUTPUT
{
"GNO": {
"btc": 0.00256739,
"eth": 0.06367411,
"bnb": 0.28914454,
"xrp": 266.561,
"usd": 159.11,
"aud": 230.83,
"cad": 214.67,
"eur": 143.72,
"gbp": 119.78,
"hkd": 1236.71,
"jpy": 22864,
"rub": 15250.8
}
}