Polygon
About
Connect and scale blockchains with Polygon's technology.
Full Coverage
Stack
Symbol
MATIC
Gas Token
POL
Chain ID:
137
Testnet Chain ID:
80002
MATIC Pricing Across Every Major Currency
Access Polygon via Uniblock's unified blockchain API. Ethereum's Internet of Blockchains Connect and scale blockchains with Polygon's technology.
Code Snippet
INPUT
const options = {method: 'GET', headers: {accept: 'application/json'}};
fetch('https://api.uniblock.dev/uni/v1/market-data/price?symbol=MATIC', options)
.then(response => response.json())
.then(response => console.log(response))
.catch(err => console.error(err));
OUTPUT
{
"MATIC": {
"btc": 0.00000612,
"eth": 0.00015193,
"bnb": 0.0006902,
"xrp": 0.63388645,
"usd": 0.378916,
"aud": 0.549869,
"cad": 0.511162,
"eur": 0.342281,
"gbp": 0.285299,
"hkd": 2.95,
"jpy": 54.42,
"rub": 36.32
}
}