Naar de inhoud
GET /v1/stats

Network 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/ethereum-api

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

Verkrijg een API-sleutel

Codefragmenten

curl "https://api.oanor.com/ethereum-api/v1/stats" \
  -H "x-oanor-key: oanor_test_..."
await fetch("https://api.oanor.com/ethereum-api/v1/stats", {
  headers: { "x-oanor-key": "oanor_test_..." }
});
$ch = curl_init("https://api.oanor.com/ethereum-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/ethereum-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": 3.54,
            "slow": 0.4,
            "average": 0.88
        },
        "total_blocks": 25269001,
        "coin_price_usd": 1688.58,
        "gas_used_today": "217771930431",
        "market_cap_usd": 203785462714.3398,
        "total_addresses": "649086843",
        "total_transactions": "3525345889",
        "transactions_today": "1587585",
        "network_utilization_percent": 50.98442132346185
    },
    "meta": {
        "timestamp": "2026-06-08T01:19:47.722Z",
        "request_id": "8317b238-2f5b-49cc-b791-c57451520398"
    },
    "status": "ok",
    "message": "Stats retrieved successfully",
    "success": true
}