Zum Inhalt springen
GET /v1/supply

ETH supply and net change over windows

Live testen

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

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

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

API-Key holen

Code-Snippets

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

Beispiel-Response

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

{
    "data": {
        "note": "net_change_eth is issuance minus burn over the window; negative means net deflation (more ETH burned than created).",
        "chain": "Ethereum",
        "source": "ultrasound.money",
        "block_number": 25295502,
        "net_change_eth": {
            "d1": 2783.4,
            "d7": 19175.05,
            "h1": 109.9088,
            "m5": 11.897,
            "d30": 82439.69
        },
        "current_supply_eth": 121771358.57
    },
    "meta": {
        "timestamp": "2026-06-11T16:46:43.185Z",
        "request_id": "542d10ca-2ff7-43d3-9c52-1d5917ac7d2b"
    },
    "status": "ok",
    "message": "Supply retrieved successfully",
    "success": true
}