
Ethereum Beacon Chain
About
The Beacon Chain coordinates Ethereum's proof-of-stake consensus, tracking validators, attestations, and finality.
Full Coverage
Stack
Symbol
ETH
Gas Token
ETH
Tools
Real-Time ETH Pricing Across 12 Currencies
Access Ethereum Beacon Chain via Uniblock's unified blockchain API. Ethereum's Consensus Layer The Beacon Chain coordinates Ethereum's proof-of-stake consensus, tracking validators, attestations, and finality.
Code Snippet
INPUT
const options = {method: 'GET', headers: {accept: 'application/json'}};
fetch('https://api.uniblock.dev/uni/v1/market-data/price?symbol=ETH', options)
.then(response => response.json())
.then(response => console.log(response))
.catch(err => console.error(err));
OUTPUT
{
"ETH": {
"btc": 0.0402,
"eth": 1.00,
"bnb": 4.55,
"xrp": 4188.0,
"usd": 2513.0,
"aud": 3644.0,
"cad": 3394.0,
"eur": 2269.0,
"gbp": 1897.0,
"hkd": 19551.0,
"jpy": 359861.0,
"rub": 240997.0
}
}