/v1/blocks
Most recent blocks with blob count, fee and DA fee
Live testen
10 freie Calls pro Tag — keine Anmeldung, kein API-Key. Geht durchs oanor-Gateway.
Funktioniert. Hol dir einen API-Key und nutze sie in deinem Projekt.
API-Key holenCode-Snippets
curl "https://api.oanor.com/blobspace-api/v1/blocks" \ -H "x-oanor-key: oanor_test_..."
await fetch("https://api.oanor.com/blobspace-api/v1/blocks", {
headers: { "x-oanor-key": "oanor_test_..." }
});
$ch = curl_init("https://api.oanor.com/blobspace-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/blobspace-api/v1/blocks",
headers={"x-oanor-key": "oanor_test_..."}
)
Beispiel-Response
Echte Antwort dieses Endpoints, erfasst beim letzten Health-Check.
{
"data": {
"note": "The most recent Ethereum blocks with their blob payload — how many blobs each block carried (against the 6-blob target / 9-blob maximum), the blob base fee in gwei and the data-availability fee burned. Pass limit (1-30, default 15). Live, cached ~30s.",
"count": 10,
"blocks": [
{
"slot": 14539079,
"blobs": 2,
"number": 25303515,
"timestamp": "2026-06-12T19:36:11.000Z",
"da_fee_eth": 2.0e-6,
"blob_gas_used": 262144,
"blob_base_fee_gwei": 0.00869
},
{
"slot": 14539078,
"blobs": 11,
"number": 25303514,
"timestamp": "2026-06-12T19:35:59.000Z",
"da_fee_eth": 1.2e-5,
"blob_gas_used": 1441792,
"blob_base_fee_gwei": 0.00834
},
{
"slot": 14539077,
"blobs": 1,
"number": 25303513,
"timestamp": "2026-06-12T19:35:47.000Z",
"da_fee_eth": 1.0e-6,
"blob_gas_used": 131072,
"blob_base_fee_gwei": 0.008309
},
{
"slot": 14539076,
"blobs": 2,
"number": 25303512,
"timestamp": "2026-06-12T19:35:35.000Z",
"da_fee_eth": 2.0e-6,
"blob_gas_used": 262144,
"blob_base_fee_gwei": 0.008247
},
{
"slot": 14539073,
"blobs": 10,
"number": 25303509,
"timestamp": "2026-06-12T19:34:59.000Z",
"da_fee_eth": 1.2e-5,
"blob_gas_used": 1310720,
"blob_base_fee_gwei": 0.009295
},
{
"slot": 14539072,
"blobs": 4,
"number": 25303508,
"timestamp": "2026-06-12T19:34:47.000Z",
"da_fee_eth": 5.0e-6,
"blob_gas_used": 524288,
"blob_base_fee_gwei": 0.009157
},
{
"slot": 14539071,
"blobs": 1,
"number": 25303507,
"timestamp": "2026-06-12T19:34:35.000Z",
"da_fee_eth": 1.0e-6,
"blob_gas_used": 131072,
"blob_base_fee_gwei": 0.009123
},
{
"slot": 14539070,
"blobs": 1,
"number": 25303506,
"timestamp": "2026-06-12T19:34:23.000Z",
"da_fee_eth": 1.0e-6,
"blob_gas_used": 131072,
"blob_base_fee_gwei": 0.009089
},
{
"slot": 14539068,
"blobs": 7,
"number": 25303504,
"timestamp": "2026-06-12T19:33:59.000Z",
"da_f
…