/v1/supply
ETH supply and net change over windows
Pruébalo en vivo
10 llamadas gratis al día — sin registro, sin clave API. Pasa por el gateway de oanor.
Funciona. Consigue una clave API y úsala en tu proyecto.
Obtener una clave APIFragmentos de código
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_..."}
)
Respuesta de ejemplo
Una respuesta real de este endpoint, capturada en la última comprobación de estado.
{
"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
}