Klaytin
About
High-performance blockchain designed for enterprise use.
Partial Coverage
Stack
Symbol
KAIA
Gas Token
KAIA
Chain ID:
8217
Testnet Chain ID:
1001
Socials
Tools
Real-Time KLAY Enterprise Pricing Data
Access Klaytin via Uniblock's unified blockchain API. Enterprise-Grade Blockchain High-performance blockchain designed for enterprise use.
Code Snippet
INPUT
const options = {method: 'GET', headers: {accept: 'application/json'}};
fetch('https://api.uniblock.dev/uni/v1/market-data/price?symbol=KLAY', options)
.then(response => response.json())
.then(response => console.log(response))
.catch(err => console.error(err));
OUTPUT
{
"KLAY": {
"btc": 0.00000206,
"eth": 0.00005109,
"bnb": 0.00023183,
"xrp": 0.2137935,
"usd": 0.127702,
"aud": 0.185263,
"cad": 0.17229,
"eur": 0.115349,
"gbp": 0.096133,
"hkd": 0.992574,
"jpy": 18.35,
"rub": 12.24
}
}