Arbitrum
About
Scale Ethereum transactions with faster speeds and lower costs.
Full Coverage
Stack
Symbol
ARB
Gas Token
ETH
Chain ID:
42161
Testnet Chain ID:
421614
Real-Time ARB Pricing Across 12 Currencies
Uniblock makes Web3 integrations seamless with user-friendly API design, straitforwards SDKs, and meticulously crafted documentation.
Code Snippet
INPUT
const options = {method: 'GET', headers: {accept: 'application/json'}};
fetch('https://api.uniblock.dev/uni/v1/market-data/price?symbol=ARB', options)
.then(response => response.json())
.then(response => console.log(response))
.catch(err => console.error(err));
OUTPUT
{
"ARB": {
"btc": 0.00000898,
"eth": 0.00022283,
"bnb": 0.0010122,
"xrp": 0.93011403,
"usd": 0.555656,
"aud": 0.806349,
"cad": 0.749587,
"eur": 0.501933,
"gbp": 0.418374,
"hkd": 4.32,
"jpy": 79.81,
"rub": 53.26
}
}