/v1/meta
Service metadata and endpoint catalog
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/bitcoinstats-api/v1/meta" \ -H "x-oanor-key: oanor_test_..."
await fetch("https://api.oanor.com/bitcoinstats-api/v1/meta", {
headers: { "x-oanor-key": "oanor_test_..." }
});
$ch = curl_init("https://api.oanor.com/bitcoinstats-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/bitcoinstats-api/v1/meta",
headers={"x-oanor-key": "oanor_test_..."}
)
Respuesta de ejemplo
Una respuesta real de este endpoint, capturada en la última comprobación de estado.
{
"data": {
"source": "blockchain.com statistics API (live)",
"service": "bitcoinstats-api",
"endpoints": {
"GET /v1/meta": "This document.",
"GET /v1/stats": "Live Bitcoin network economic snapshot.",
"GET /v1/metric": "Historical time series of an on-chain metric (name=active-addresses, days=30).",
"GET /v1/supply": "Bitcoin supply, issuance, block reward and next halving.",
"GET /v1/metrics": "The catalog of available on-chain metrics."
},
"description": "Live Bitcoin on-chain economics and network-activity statistics as an API, built on the open blockchain.com dataset — the macro on-chain layer, not raw address/transaction/mempool lookups. The stats endpoint returns a live network snapshot (24h transaction count and USD volume, hash rate, market price and cap, total mined supply, miners' revenue); the metric endpoint returns the historical time series of any curated on-chain metric (active addresses, transaction volume, UTXO-set size, mempool size, miner revenue, fees and more); the metrics endpoint lists the available metrics; the supply endpoint returns Bitcoin's issuance state (total mined, share of the 21M cap, current block reward, estimated next halving). Live, no key, nothing stored. Distinct from address/transaction/mempool and mining-pool APIs and from exchange price feeds — this is Bitcoin's aggregate on-chain economics and network activity.",
"upstream_status": "ok",
"market_price_usd": 60997.88
},
"meta": {
"timestamp": "2026-06-10T14:00:07.681Z",
"request_id": "1caf1070-db3b-4348-a7f3-9bc1ece75e07"
},
"status": "ok",
"message": "Meta",
"success": true
}