Recommended fees + projections
API · /bitcoin-api
Bitcoin Blockchain API
The Bitcoin blockchain as an API, powered by mempool.space. Get live transaction-fee estimates in sat/vB (fastest, 30-minute, 1-hour, economy and minimum) plus a projection of the next mempool blocks, inspect the current mempool size and fee histogram, list recent blocks with their mining pool, size and fees, look up any block by height or hash, check any Bitcoin address for its confirmed balance, total received/sent and recent transactions, fetch any transaction with its inputs, outputs, fee and confirmation status, read the current difficulty adjustment and network hashrate, and get the live BTC price in major currencies. Every amount is in satoshis. Perfect for wallets and fee estimators, block explorers, address and payment monitoring, on-chain dashboards and analytics, and Bitcoin bots. No accounts, no upstream key. For coin market prices use the Crypto API and for DeFi TVL the DeFi API.
API salute
salutare- Tempo di attività
- 100.00%
- Sondaggi del server · 24 ore su 24
- Latenza media
- 226 ms
- Sondaggi del server · 24 ore su 24
- Abbonati
- 4,268
- attiva
- Chiamate totali
- 36
- ultimi 7 giorni
Prezzi
Scegli un livello: fatturazione mensile, annullamento in qualsiasi momento.
Free
Gratis
- 3,300 chiamate/mese
- 2 richieste/secondo
- Tetto rigido (429 sopra la quota, nessuna eccedenza)
- 3,300 llamadas/mes
- 2 req/seg
- Tarifas, mempool, bloques, tx y dirección
- Sin tarjeta de crédito
Starter
€6.40 /mese
- 41,500 chiamate/mese
- 6 richieste/secondo
- Tetto rigido (429 sopra la quota, nessuna eccedenza)
- 41.5k calls/month
- 6 req/sec
- Address monitoring & tx lookup
- Email support
Pro
€18.40 /mese
- 207,000 chiamate/mese
- 16 richieste/secondo
- Tetto rigido (429 sopra la quota, nessuna eccedenza)
- 207k calls/month
- 16 req/sec
- Wallets & block explorers
- Priority support
Mega
€49.40 /mese
- 1,030,000 chiamate/mese
- 40 richieste/secondo
- Tetto rigido (429 sopra la quota, nessuna eccedenza)
- 1.03M calls/month
- 40 req/sec
- On-chain dashboards & bots
- Dedicated SLA
Costruito da
Correlato APIs
Altro APIs con tag sovrapposti.
Crypto API
Live cryptocurrency market data: prices, top coins & markets, price/OHLC charts, historical snapshots, trending coins, global stats, exchanges and categories.
api.oanor.com/crypto-api
DeFiLlama API
Analítica de finanzas descentralizadas como API, impulsada por DeFiLlama — el panel independiente más utilizado para rastrear el Valor Total Bloqueado (TVL) en el ecosistema DeFi. TVL es el valor en dólares de los activos depositados en un protocolo, la medida clave del tamaño y la salud de un protocolo DeFi. Esta API envuelve los datos abiertos de DeFiLlama en JSON limpio y compacto. /v1/protocols clasifica los protocolos DeFi por TVL y te permite filtrar por blockchain (chain=Ethereum) y por categoría (category=Lending, Dexes, Liquid Staking, CDP, Yield, Bridge y más) — cada protocolo con su slug, símbolo del token, categoría, las cadenas en las que opera, su TVL en USD y el cambio de TVL en 1 día y 7 días. /v1/protocol?slug=aave devuelve el perfil de un solo protocolo y su TVL actual desglosado por blockchain (solo cadenas reales, por lo que la cifra principal no se infla con agregados de staking o préstamos). /v1/chains clasifica cada blockchain por el TVL desplegado en ella. /v1/stablecoins clasifica las stablecoins por suministro circulante, con el tipo de anclaje y el mecanismo de anclaje de cada moneda. Todos los valores están en dólares estadounidenses y reflejan la instantánea más reciente. Ideal para paneles de cripto y DeFi, herramientas de cartera y riesgo, productos de investigación de mercado y análisis, y bots de Discord/Telegram. Esto es análisis on-chain/DeFi — distinto de las fuentes de precios de tokens. Usa un slug de protocolo de /v1/protocols para el endpoint de detalle. Datos de DeFiLlama (gratuito y abierto).
api.oanor.com/defillama-api
DeFi Analytics API
Decentralized-finance analytics as an API, powered by DefiLlama. Track the Total Value Locked (TVL) across more than 7,000 DeFi protocols ranked and filterable by blockchain and category (Lending, DEXes, Liquid Staking, Bridges, CDP and more), drill into any single protocol for its current TVL, per-chain breakdown, category, market cap and links, see how much value is locked on each of 450+ blockchains, read the circulating supply and peg of every major stablecoin (USDT, USDC, DAI and the rest), and find the best yield-farming pools with their base and reward APY, filterable by chain and project. Every figure is live and denominated in USD. Perfect for DeFi dashboards and portfolio trackers, yield aggregators, research and analytics tools, trading bots and crypto data sites. No accounts, no upstream key. For token spot prices use the Crypto API.
api.oanor.com/defi-api
Hash API
Compute cryptographic hashes (MD5, SHA-1, SHA-256/384/512, SHA-3, RIPEMD-160) in hex or base64, generate HMAC signatures for webhook and message authentication, and mint v4 UUIDs. All server-side and deterministic. Handy for integrity checks, signing, cache keys, deduplication and id generation.
api.oanor.com/hash-api
Domande frequenti
Risposte rapide su prezzi, quote e integrazione.
Come ottengo una chiave API per Bitcoin Blockchain API?
Qual è il limite di velocità di Bitcoin Blockchain API?
Quanto costa Bitcoin Blockchain API?
Posso cancellare l'abbonamento in qualsiasi momento?
Bitcoin Blockchain 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/bitcoin-api/SOME_PATH \
-H "x-oanor-key: oanor_test_..."
const res = await fetch("https://api.oanor.com/bitcoin-api/SOME_PATH", {
headers: { "x-oanor-key": "oanor_test_..." }
});
const data = await res.json();
$ch = curl_init("https://api.oanor.com/bitcoin-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/bitcoin-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.