/v1/meta
Service metadata
Live testen
10 freie Calls pro Tag — keine Anmeldung, kein API-Key. Geht durchs oanor-Gateway.
Funktioniert. Hol dir einen API-Key und nutze sie in deinem Projekt.
API-Key holenCode-Snippets
curl "https://api.oanor.com/ethburn-api/v1/meta" \ -H "x-oanor-key: oanor_test_..."
await fetch("https://api.oanor.com/ethburn-api/v1/meta", {
headers: { "x-oanor-key": "oanor_test_..." }
});
$ch = curl_init("https://api.oanor.com/ethburn-api/v1/meta");
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/meta",
headers={"x-oanor-key": "oanor_test_..."}
)
Beispiel-Response
Echte Antwort dieses Endpoints, erfasst beim letzten Health-Check.
{
"data": {
"note": "On-chain amounts are wei (1 ETH = 1e18 wei) converted to ETH; gas fees converted to Gwei. leaderboard period: 5m, 1h, 24h, 7d, 30d, all, since_merge.",
"source": "ultrasound.money (ultrasound.money/api, live)",
"service": "ethburn-api",
"endpoints": {
"GET /v1/burn": "ETH burned per window (ETH + USD), burn rate in ETH/min, deflationary streak.",
"GET /v1/meta": "This document.",
"GET /v1/supply": "Current ETH supply and net change over 5m/1h/1d/7d/30d (negative = deflation).",
"GET /v1/basefee": "Current base fee per gas (Gwei), blob base fee and ETH price.",
"GET /v1/leaderboard": "Apps/contracts burning the most ETH (period=24h, limit=25)."
},
"eth_supply": 121771358.57,
"description": "Live Ethereum monetary-policy data: total ETH supply, net issuance versus the EIP-1559 fee burn that can make ether deflationary ('ultrasound money'), from ultrasound.money. The supply endpoint returns current ETH supply and its net change over 5m/1h/1d/7d/30d (negative = net deflation); the burn endpoint returns ETH destroyed by the base-fee burn per window in ETH and USD, the burn rate in ETH/min and the deflationary streak; the basefee endpoint returns the current base fee per gas, blob base fee and ETH price; the leaderboard endpoint ranks the apps and contracts burning the most ETH. Live, no key, nothing stored. The ETH supply / issuance / burn cut — distinct from the gas-fee, on-chain and price APIs.",
"upstream_status": "ok"
},
"meta": {
"timestamp": "2026-06-11T16:46:43.648Z",
"request_id": "3a5bf3e9-493a-4b6e-aa71-7e933b174b78"
},
"status": "ok",
"message": "Meta",
"success": true
}