
Polynomial
About
Polynomial runs perpetuals and derivatives on an OP Stack rollup with a unified liquidity layer and shared Superchain bridging.
Full Coverage
Stack
Symbol
ETH
Gas Token
ETH
Tools
Real-Time ETH Pricing Across 12 Currencies
Access Polynomial via Uniblock's unified blockchain API. An OP Stack L2 Built for Derivatives Polynomial runs perpetuals and derivatives on an OP Stack rollup with a unified liquidity layer and shared Superchain bridging.
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
}
}