Tempo
About
Move stablecoins at machine speed on a Layer 1 incubated by Stripe and Paradigm, purpose-built for payments.
Full Coverage
Stack
Symbol
USD
Gas Token
USD
Chain ID:
4217
Testnet Chain ID:
42431
Socials
Real-Time USD Pricing Across 12 Currencies
Access Tempo via Uniblock's unified blockchain API. A Layer 1 Built for Stablecoin Payments Move stablecoins at machine speed on a Layer 1 incubated by Stripe and Paradigm, purpose-built for payments.
Code Snippet
INPUT
const options = {method: ‘GET’, headers: {accept: ‘application/json’}};
fetch(‘https://api.uniblock.dev/uni/v1/market-data/price?symbol=USD’, options)
.then(response => response.json())
.then(response => console.log(response))
.catch(err => console.error(err));
OUTPUT
{
“USD”: {
“btc”: 0.000016129,
“eth”: 0.0004,
“bnb”: 0.0018181818,
“xrp”: 1.67,
“usd”: 1,
“aud”: 1.45,
“cad”: 1.35,
“eur”: 0.904,
“gbp”: 0.7485,
“hkd”: 7.76,
“jpy”: 143.43,
“rub”: 95.67
}
}