Skip to content
GET /v1/stats

Network statistics

Try it live

10 free calls per day — no sign-up, no API key. Goes through the oanor gateway.

Custom headers (optional)
api.oanor.com/hemi-api

It works. Grab an API key and use it in your project.

Get an API key

Code snippets

curl "https://api.oanor.com/hemi-api/v1/stats" \
  -H "x-oanor-key: oanor_test_..."
await fetch("https://api.oanor.com/hemi-api/v1/stats", {
  headers: { "x-oanor-key": "oanor_test_..." }
});
$ch = curl_init("https://api.oanor.com/hemi-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/hemi-api/v1/stats",
    headers={"x-oanor-key": "oanor_test_..."}
)

Example response

A real response from this endpoint, captured by the latest health check.

{
    "data": {
        "tvl_usd": null,
        "gas_prices": {
            "fast": 0.01,
            "slow": 0.01,
            "average": 0.01
        },
        "total_blocks": 4587128,
        "coin_price_usd": 1661.0829650160938,
        "gas_used_today": "1098909881",
        "market_cap_usd": 200466952134.0988,
        "total_addresses": "2612019",
        "total_transactions": "14386657",
        "transactions_today": "11028",
        "network_utilization_percent": 0.38532293333333334
    },
    "meta": {
        "timestamp": "2026-06-08T09:50:57.433Z",
        "request_id": "8eee6329-7502-42b5-8b28-2226bd988404"
    },
    "status": "ok",
    "message": "Stats retrieved successfully",
    "success": true
}