POKT Network
About
Access decentralized APIs for seamless blockchain integration.
Partial Coverage
Stack
Symbol
POKT
Gas Token
Socials
Tools
Live POKT Decentralized API Pricing Data
Access POKT Network via Uniblock's unified blockchain API. Decentralized API Infrastructure Access decentralized APIs for seamless blockchain integration.
Code Snippet
INPUT
const options = {method: 'GET', headers: {accept: 'application/json'}};
fetch('https://api.uniblock.dev/uni/v1/market-data/price?symbol=POKT', options)
.then(response => response.json())
.then(response => console.log(response))
.catch(err => console.error(err));
OUTPUT
{
"POKT": {
"btc": 5.64875e-7,
"eth": 0.00001407,
"bnb": 0.00006357,
"xrp": 0.05847799,
"usd": 0.03498934,
"aud": 0.050984,
"cad": 0.04727358,
"eur": 0.03166577,
"gbp": 0.02641314,
"hkd": 0.271973,
"jpy": 5.02,
"rub": 3.35
}
}