/v1/blocks
The most recent blocks
Probeer het live
10 gratis calls per dag — geen registratie, geen API-key. Loopt via de oanor-gateway.
Het werkt. Haal een API-key op en gebruik hem in je project.
Verkrijg een API-sleutelCodefragmenten
curl "https://api.oanor.com/base-api/v1/blocks" \ -H "x-oanor-key: oanor_test_..."
await fetch("https://api.oanor.com/base-api/v1/blocks", {
headers: { "x-oanor-key": "oanor_test_..." }
});
$ch = curl_init("https://api.oanor.com/base-api/v1/blocks");
curl_setopt($ch, CURLOPT_HTTPHEADER, ["x-oanor-key: oanor_test_..."]);
curl_setopt($ch, CURLOPT_RETURNTRANSFER, true);
$out = curl_exec($ch);
import requests
requests.get(
"https://api.oanor.com/base-api/v1/blocks",
headers={"x-oanor-key": "oanor_test_..."}
)
Voorbeeldrespons
Een echte respons van dit endpoint, vastgelegd bij de laatste health check.
{
"data": {
"count": 50,
"blocks": [
{
"hash": "0xf4c7149bef48426beda7a3d856b229fb354678380379a4b214c4bef3701ef4d3",
"size": 99992,
"miner": "0x4200000000000000000000000000000000000011",
"height": 47046109,
"gas_used": 23181498,
"tx_count": 134,
"gas_limit": 400000000,
"timestamp": "2026-06-08T01:19:25.000000Z",
"burnt_fees": "115907490000000",
"base_fee_per_gas": "5000000"
},
{
"hash": "0x86378fd51cc6841922b43322ef1eaba27021c23e229854bfb8a72f2207a9930e",
"size": 81195,
"miner": "0x4200000000000000000000000000000000000011",
"height": 47046108,
"gas_used": 22710974,
"tx_count": 138,
"gas_limit": 400000000,
"timestamp": "2026-06-08T01:19:23.000000Z",
"burnt_fees": "113554870000000",
"base_fee_per_gas": "5000000"
},
{
"hash": "0x749c2a408a3dd3b75ddadc121296aa4a12164879364b0c3d7fe1b3b8eb921b54",
"size": 124133,
"miner": "0x4200000000000000000000000000000000000011",
"height": 47046107,
"gas_used": 35709034,
"tx_count": 137,
"gas_limit": 400000000,
"timestamp": "2026-06-08T01:19:21.000000Z",
"burnt_fees": "178545170000000",
"base_fee_per_gas": "5000000"
},
{
"hash": "0xe1a3e89b8c81ff7ca7f4a74f331189a9c72dbe9743805b53451c6b869f3df489",
"size": 98413,
"miner": "0x4200000000000000000000000000000000000011",
"height": 47046106,
"gas_used": 25641577,
"tx_count": 150,
"gas_limit": 400000000,
"timestamp": "2026-06-08T01:19:19.000000Z",
"burnt_fees": "128207885000000",
"base_fee_per_gas": "5000000"
},
{
"hash": "0xe970087a4e343d1505cd517e6bc4f963af747a5fda13600d5f02e9149d27bd19",
"size": 113045,
"miner": "0x4200000000000000000000000000000000000011",
"height": 47046105,
"gas_used": 30901569,
"tx_count": 197,
"gas_limit": 400000000,
"timestamp": "2026-06-08T01:19:17.000000Z",
"burnt_fees": "154507845000000",
"base_fee_per_gas": "5000000"
},
{
"hash": "0x470a4c5d93596e3c73495ff956e811d6b51df52bd10ce64dc12d6aabe5d4f168",
"size": 125268,
"miner": "0x4200000000000000000000000000000000000011",
"height": 47046104,
"gas_used": 26550359,
"tx_c
…