/v1/supply
ETH supply and net change over windows
Provalo dal vivo
10 chiamate gratuite al giorno — senza registrazione, senza chiave API. Passa dal gateway oanor.
Funziona. Prendi una chiave API e usala nel tuo progetto.
Ottieni una chiave APIFrammenti di codice
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_..."}
)
Risposta di esempio
Una risposta reale di questo endpoint, acquisita dall'ultimo 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
}