Zum Inhalt springen
GET /v1/network

Live blob fee-market state

Live testen

10 freie Calls pro Tag — keine Anmeldung, kein API-Key. Geht durchs oanor-Gateway.

Eigene Header (optional)
api.oanor.com/blobspace-api

Funktioniert. Hol dir einen API-Key und nutze sie in deinem Projekt.

API-Key holen

Code-Snippets

curl "https://api.oanor.com/blobspace-api/v1/network" \
  -H "x-oanor-key: oanor_test_..."
await fetch("https://api.oanor.com/blobspace-api/v1/network", {
  headers: { "x-oanor-key": "oanor_test_..." }
});
$ch = curl_init("https://api.oanor.com/blobspace-api/v1/network");
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/network",
    headers={"x-oanor-key": "oanor_test_..."}
)

Beispiel-Response

Echte Antwort dieses Endpoints, erfasst beim letzten Health-Check.

{
    "data": {
        "note": "Live state of Ethereum's blob (EIP-4844) data-availability fee market. The blob base fee is an independent fee that rises when blocks carry more than the 6-blob target and falls below it; utilisation compares the recent average blobs per block to the target and to the 9-blob maximum (post-Pectra). When utilisation runs above 100% of target the blob base fee climbs and every rollup's data-availability cost rises together. Fees in gwei/ETH, averaged over the most recent blocks. Cached ~30s.",
        "source": "Blobscan public API (api.blobscan.com), recent blocks",
        "latest_block": 25303515,
        "sample_blocks": 30,
        "excess_blob_gas": 186694333,
        "latest_timestamp": "2026-06-12T19:36:11.000Z",
        "blob_base_fee_gwei": 0.00869,
        "blobs_per_block_avg": 4.33,
        "max_blobs_per_block": 9,
        "avg_blob_base_fee_gwei": 0.008716,
        "target_blobs_per_block": 6,
        "utilisation_vs_max_pct": 48.1,
        "avg_da_fee_per_block_eth": 5.0e-6,
        "utilisation_vs_target_pct": 72.2
    },
    "meta": {
        "timestamp": "2026-06-12T19:36:18.828Z",
        "request_id": "cee60a25-e7ca-4159-8a25-4edd3fb1f7a7"
    },
    "status": "ok",
    "message": "Blob fee-market state retrieved successfully",
    "success": true
}