Binance
About
Execute smart contracts with high throughput and low fees.
Full Coverage
Stack
Symbol
BNB
Gas Token
BNB
Chain ID:
56
Testnet Chain ID:
97
Live BNB Market Data Across Major Currencies
Access Binance via Uniblock's unified blockchain API. Efficient and Low-Cost Transactions Execute smart contracts with high throughput and low fees.
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.0088725,
"eth": 0.22011801,
"bnb": 1,
"xrp": 916.66,
"usd": 550.02,
"aud": 798.17,
"cad": 741.98,
"eur": 496.84,
"gbp": 414.13,
"hkd": 4275.24,
"jpy": 78997,
"rub": 52717
}
}