Ethereum's Internet of Blockchains
Connect and scale blockchains with Polygon's technology.
High Throughput
Process a high number of transactions per second.
Low Fees
Reduce costs significantly for users and developers.
Developer Tools
Robust framework and tools for developers.
Security
Enhanced security features for safe transactions.
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.
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
}
}