ETH supply and net change over windows
API · /ethburn-api
Ethereum Supply & Burn API
Live Ethereum monetary-policy data — the total ETH supply, how much of it is being created versus destroyed, and the EIP-1559 fee burn that can make ether deflationary (the "ultrasound money" thesis), powered by the public ultrasound.money feed, no key, nothing stored. The supply endpoint returns the current circulating ETH supply and its net change over the last 5 minutes, hour, day, week and month — a negative change means more ETH was burned than issued, i.e. net deflation. The burn endpoint returns the ETH destroyed by the base-fee burn over each window in both ETH and USD, the live burn rate in ETH per minute and the current deflationary streak. The basefee endpoint returns the current base fee per gas, the blob base fee and the ETH price. The leaderboard endpoint ranks the apps and contracts burning the most ETH right now. Track ETH issuance, the burn and whether ether is deflating as live JSON. This is the ETH supply / issuance / burn cut — distinct from the gas-fee, on-chain and price APIs in the catalogue.
API salute
salutare- Tempo di attività
- 100.00%
- Sondaggi del server · 24 ore su 24
- Latenza media
- 103 ms
- Sondaggi del server · 24 ore su 24
- Abbonati
- 3,842
- attiva
- Chiamate totali
- 95
- ultimi 7 giorni
Prezzi
Scegli un livello: fatturazione mensile, annullamento in qualsiasi momento.
Free
Gratis
- 19,000 chiamate/mese
- 3 richieste/secondo
- Tetto rigido (429 sopra la quota, nessuna eccedenza)
- 19k Aufrufe/Monat
- 3 req/sec
- Alle Endpunkte
- Keine Kreditkarte
Analyst
€8.45 /mese
- 205,000 chiamate/mese
- 10 richieste/secondo
- Tetto rigido (429 sopra la quota, nessuna eccedenza)
- 205k Aufrufe/Monat
- 10 req/sec
- E-Mail-Support
Pro
€23.90 /mese
- 890,000 chiamate/mese
- 28 richieste/secondo
- Tetto rigido (429 sopra la quota, nessuna eccedenza)
- 890k Aufrufe/Monat
- 28 req/sec
- Priority-Support
Scale
€55.10 /mese
- 3,050,000 chiamate/mese
- 65 richieste/secondo
- Tetto rigido (429 sopra la quota, nessuna eccedenza)
- 3,05 Mio. Aufrufe/Monat
- 65 req/sec
- Dedizierte SLA
Costruito da
Correlato APIs
Altro APIs con tag sovrapposti.
Blockchair Multi-Chain Stats API
Live on-chain network statistics, mempool conditions and market data across the major UTXO blockchains and Ethereum, sourced from Blockchair. For any supported chain read the full network state — best block height, total and 24-hour block and transaction counts, mining difficulty, hashrate, coin circulation, on-chain transfer volume and chain size — or zoom into the mempool to see pending transactions, mempool size, transactions-per-second, the suggested fee per byte (or median gas price on Ethereum) and average and median transaction fees in native units and USD, or pull market data with the coin price in USD and BTC, 24-hour change, market capitalisation and dominance. Ten chains are covered: Bitcoin, Bitcoin Cash, Litecoin, Dogecoin, Dash, Zcash, Bitcoin SV, eCash, Groestlcoin and Ethereum. Distinct from single-chain mempool and gas feeds: this is one consistent multi-chain stats surface.
api.oanor.com/blockchair-api
DexPaprika On-Chain DEX API
Live on-chain decentralized-exchange market data across 35+ blockchains, with no key. List every supported network with its 24h DEX volume, transaction count and pool count; read the DEXes active on any chain; pull the top liquidity pools ranked by volume; get full token detail with multi-window price stats; search across every chain for tokens, pools and DEXes; and read global coverage totals. The on-chain / DEX / liquidity-pool layer for DeFi dashboards, token analytics, trading and research — distinct from centralized-exchange ticker readers. Live from DexPaprika (by the CoinPaprika team); short cache only.
api.oanor.com/dexpaprika-api
EIP Registry API
Ein Live-, abfragbarer Index jedes Ethereum Improvement Proposal (EIP) und ERC-Token-Standards, schlüssellos direkt aus den kanonischen ethereum/EIPs- und ethereum/ERCs-Repositories gelesen. Schlagen Sie jeden Vorschlag nach Nummer nach, um seinen Titel, Status (Draft, Review, Last Call, Final, Living, Stagnant oder Withdrawn), Typ und Kategorie, Autoren, Erstellungsdatum, Anforderungen und Abstract zu erhalten; rufen Sie mehrere Vorschläge auf einmal ab; oder listen Sie den gesamten Katalog von über 1.500 EIPs und ERCs auf. Die Referenzschicht für Wallets, Block-Explorer, Dokumentationsseiten und Entwickler-Tools, die programmatisch auflösen müssen, "was ist EIP-1559" oder "ist ERC-4626 endgültig", anstatt eine Website zu scrapen. Immer aktuell – live aus den Quell-Repositories gelesen, leicht gecached.
api.oanor.com/eipregistry-api
Ethereum Signatures API
Decode Ethereum smart-contract function and event signatures, keyless. Turn a 4-byte function selector (the first 4 bytes of any transaction calldata, e.g. 0xa9059cbb) into its human-readable function signature (transfer(address,uint256)), decode a 32-byte event topic from a log into its event signature, or search the database by name to find a selector. Many selectors have hash collisions — the API flags the original / canonical signature. Backed by the open 4byte.directory database, live. Essential for transaction decoders, block explorers, wallets, security tools and on-chain analytics — the signature-decoding layer for any EVM tooling.
api.oanor.com/ethsignatures-api
Domande frequenti
Risposte rapide su prezzi, quote e integrazione.
Come ottengo una chiave API per Ethereum Supply & Burn API?
Qual è il limite di velocità di Ethereum Supply & Burn API?
Quanto costa Ethereum Supply & Burn API?
Posso cancellare l'abbonamento in qualsiasi momento?
Ethereum Supply & Burn API è conforme al GDPR?
Scegli un endpoint dall'elenco a sinistra per visualizzarne i dettagli e provarlo.
Frammenti di codice
Iscriviti per ottenere una chiave API, quindi chiama qualsiasi percorso sotto il tuo slug.
curl https://api.oanor.com/ethburn-api/SOME_PATH \
-H "x-oanor-key: oanor_test_..."
const res = await fetch("https://api.oanor.com/ethburn-api/SOME_PATH", {
headers: { "x-oanor-key": "oanor_test_..." }
});
const data = await res.json();
$ch = curl_init("https://api.oanor.com/ethburn-api/SOME_PATH");
curl_setopt($ch, CURLOPT_RETURNTRANSFER, true);
curl_setopt($ch, CURLOPT_HTTPHEADER, ["x-oanor-key: oanor_test_..."]);
$response = curl_exec($ch);
import requests
r = requests.get(
"https://api.oanor.com/ethburn-api/SOME_PATH",
headers={"x-oanor-key": "oanor_test_..."},
)
print(r.json())
Valutazioni
Accedi per votare.
Nessuna recensione ancora.
Discussione
Fai domande, condividi consigli, ricevi risposte dal provider e dagli altri sviluppatori. Pubblico — chiunque può leggere.
Accedi per scrivere o rispondere.
AccediNuova discussione
·
-
Risposta del provider
🔒 Discussione bloccata — non si può più rispondere.
-
·
- Nessuna discussione — inizia tu.
Supporto
Supporto privato 1:1 con il provider — fatturazione, integrazione, account. Solo tu e il team del provider vedete questi thread.
Accedi per aprire un ticket di supporto.
AccediApri nuovo ticket
Descrivi cosa ti serve. Il team del provider riceve un'email e risponde sulla pagina del ticket.
-
·
Urgente - Nessun ticket per questa API.