Naar de inhoud
GET /v1/stats

Chain stats

Probeer het live

10 gratis calls per dag — geen registratie, geen API-key. Loopt via de oanor-gateway.

Aangepaste headers (optioneel)
api.oanor.com/harmony-api

Het werkt. Haal een API-key op en gebruik hem in je project.

Verkrijg een API-sleutel

Codefragmenten

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

Voorbeeldrespons

Een echte respons van dit endpoint, vastgelegd bij de laatste health check.

{
    "data": {
        "tvl_usd": null,
        "gas_prices": {
            "fast": 152.34,
            "slow": 152.34,
            "average": 152.34
        },
        "total_blocks": 89949950,
        "coin_price_usd": 0.00152352,
        "gas_used_today": "205007697",
        "market_cap_usd": 22655064.511378318,
        "total_addresses": "8385663",
        "total_transactions": "809034675",
        "transactions_today": "3708",
        "network_utilization_percent": 0.0014
    },
    "meta": {
        "timestamp": "2026-06-08T09:49:25.648Z",
        "request_id": "fa102c7d-8e2f-4d6a-ad51-49ef05c8f30b"
    },
    "status": "ok",
    "message": "Stats retrieved successfully",
    "success": true
}