Ethereum Classic
About
Access the proof-of-work chain that preserved Ethereum's unaltered history under an immutable, code-is-law philosophy.
Full Coverage
Stack
Symbol
ETC
Gas Token
ETC
Chain ID:
61
Testnet Chain ID:
63
Socials
Tools
Real-Time ETC Pricing Across 12 Currencies
Access Ethereum Classic via Uniblock's unified blockchain API. The Original, Immutable Ethereum Access the proof-of-work chain that preserved Ethereum's unaltered history under an immutable, code-is-law philosophy.
Code Snippet
INPUT
fetch(‘https://api.uniblock.dev/uni/v1/market-data/price?symbol=ETC’, options)
.then(response => response.json())
.then(response => console.log(response))
.catch(err => console.error(err));
const options = {method: ‘GET’, headers: {accept: ‘application/json’}};
fetch(‘https://api.uniblock.dev/uni/v1/market-data/price?symbol=ETC’, options)
.then(response => response.json())
.then(response => console.log(response))
.catch(err => console.error(err));
OUTPUT
{
“ETC”: {
“btc”: 0.0002983871,
“eth”: 0.0074,
“bnb”: 0.0336363636,
“xrp”: 30.83,
“usd”: 18.50,
“aud”: 26.81,
“cad”: 24.92,
“eur”: 16.72,
“gbp”: 13.85,
“hkd”: 143.56,
“jpy”: 2653.45,
“rub”: 1769.89
}
}
{
“ETC”: {
“btc”: 0.0002983871,
“eth”: 0.0074,
“bnb”: 0.0336363636,
“xrp”: 30.83,
“usd”: 18.50,
“aud”: 26.81,
“cad”: 24.92,
“eur”: 16.72,
“gbp”: 13.85,
“hkd”: 143.56,
“jpy”: 2653.45,
“rub”: 1769.89
}
}