/v1/burn
ETH burned per window, rate, deflation
Try it live
10 free calls per day — no sign-up, no API key. Goes through the oanor gateway.
It works. Grab an API key and use it in your project.
Get an API keyCode snippets
curl "https://api.oanor.com/ethburn-api/v1/burn" \ -H "x-oanor-key: oanor_test_..."
await fetch("https://api.oanor.com/ethburn-api/v1/burn", {
headers: { "x-oanor-key": "oanor_test_..." }
});
$ch = curl_init("https://api.oanor.com/ethburn-api/v1/burn");
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/burn",
headers={"x-oanor-key": "oanor_test_..."}
)
Example response
A real response from this endpoint, captured by the latest health check.
{
"data": {
"chain": "Ethereum",
"source": "ultrasound.money",
"burned_eth": {
"d7": 539.4272,
"h1": 3.9726,
"m5": 0.2299,
"all": 4634878,
"d30": 1960,
"h24": 42.2576,
"since_merge": 2011568
},
"burned_usd": {
"d7": 881181,
"h1": 6529.17,
"m5": 377.53,
"d30": 3833722,
"h24": 69285,
"since_merge": 4548047208
},
"deflationary_streak": {
"preMerge": null,
"postMerge": null
},
"burn_rate_eth_per_min": {
"d7": 0.05351,
"h1": 0.06621,
"m5": 0.04599,
"d30": 0.04536,
"h24": 0.02935
}
},
"meta": {
"timestamp": "2026-06-11T16:46:43.352Z",
"request_id": "b7cf4577-3d25-424e-88e7-eda71256960f"
},
"status": "ok",
"message": "Burn retrieved successfully",
"success": true
}