
Robinhood Chain
About
Robinhood Chain settles tokenized equities and consumer trading flow on an Arbitrum Orbit rollup that posts data to Ethereum.
Full Coverage
Stack
Symbol
ETH
Gas Token
ETH
Socials
Real-Time ETH Pricing Across 12 Currencies
Access Robinhood Chain via Uniblock's unified blockchain API. An Arbitrum Orbit L2 for Tokenized Markets Robinhood Chain settles tokenized equities and consumer trading flow on an Arbitrum Orbit rollup that posts data to Ethereum.
Code Snippet
INPUT
const options = {method: 'GET', headers: {accept: 'application/json'}};
fetch('https://api.uniblock.dev/uni/v1/market-data/price?symbol=ETH', options)
.then(response => response.json())
.then(response => console.log(response))
.catch(err => console.error(err));
OUTPUT
{
"ETH": {
"btc": 0.0402,
"eth": 1.00,
"bnb": 4.55,
"xrp": 4188.0,
"usd": 2513.0,
"aud": 3644.0,
"cad": 3394.0,
"eur": 2269.0,
"gbp": 1897.0,
"hkd": 19551.0,
"jpy": 359861.0,
"rub": 240997.0
}
}