/v1/stats
Live Bitcoin network economic snapshot
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/bitcoinstats-api/v1/stats" \ -H "x-oanor-key: oanor_test_..."
await fetch("https://api.oanor.com/bitcoinstats-api/v1/stats", {
headers: { "x-oanor-key": "oanor_test_..." }
});
$ch = curl_init("https://api.oanor.com/bitcoinstats-api/v1/stats");
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/stats",
headers={"x-oanor-key": "oanor_test_..."}
)
Example response
A real response from this endpoint, captured by the latest health check.
{
"data": {
"source": "blockchain.com",
"timestamp": "2026-06-10T13:54:05.000Z",
"difficulty": 138955357012247,
"block_height": 953110,
"hash_rate_ehs": 939.42,
"blocks_size_mb": 221217900,
"market_cap_usd": 1222456606896,
"total_mined_btc": 20040968.75,
"market_price_usd": 60997.88,
"transactions_24h": 635975,
"total_fees_btc_24h": 425,
"miners_revenue_usd_24h": 0,
"minutes_between_blocks": 10.15,
"estimated_tx_volume_usd_24h": 6142243337
},
"meta": {
"timestamp": "2026-06-10T14:00:06.899Z",
"request_id": "a2fe069a-8e30-4e58-adad-1dea5af54999"
},
"status": "ok",
"message": "Stats retrieved successfully",
"success": true
}