Osmosis
About
Build and scale DeFi applications across multiple blockchains.
Partial Coverage
Stack
Symbol
OSMO
Gas Token
Chain ID:
osmosis-1
Testnet Chain ID:
osmo-test-5
Live OSMO Interchain DeFi Pricing Data
Access Osmosis via Uniblock's unified blockchain API. Interchain DeFi Hub Build and scale DeFi applications across multiple blockchains.
Code Snippet
INPUT
const options = {method: 'GET', headers: {accept: 'application/json'}};
fetch('https://api.uniblock.dev/uni/v1/market-data/price?symbol=OSMO', options)
.then(response => response.json())
.then(response => console.log(response))
.catch(err => console.error(err));
OUTPUT
{
"OSMO": {
"btc": 0.00000892,
"eth": 0.00022221,
"bnb": 0.00100401,
"xrp": 0.92318224,
"usd": 0.551776,
"aud": 0.804009,
"cad": 0.745496,
"eur": 0.499364,
"gbp": 0.416531,
"hkd": 4.29,
"jpy": 79.13,
"rub": 52.89
}
}