opBNB
About
Reach BNB Chain's massive user base with an OP Stack rollup built for thousands of transactions per second at sub-cent cost.
Full Coverage
Stack
Symbol
BNB
Gas Token
BNB
Chain ID:
204
Testnet Chain ID:
5611
Socials
Tools
Real-Time BNB Pricing Across 12 Currencies
Access opBNB via Uniblock's unified blockchain API. Mass-Market Scale on BNB Chain Reach BNB Chain's massive user base with an OP Stack rollup built for thousands of transactions per second at sub-cent cost.
Code Snippet
INPUT
const options = {method: ‘GET’, headers: {accept: ‘application/json’}};
fetch(‘https://api.uniblock.dev/uni/v1/market-data/price?symbol=BNB’, options)
.then(response => response.json())
.then(response => console.log(response))
.catch(err => console.error(err));
OUTPUT
{
“BNB”: {
“btc”: 0.0088709677,
“eth”: 0.22,
“bnb”: 1,
“xrp”: 916.67,
“usd”: 550,
“aud”: 796.95,
“cad”: 740.85,
“eur”: 497.20,
“gbp”: 411.68,
“hkd”: 4268.00,
“jpy”: 78886.50,
“rub”: 52618.50
}
}