Skip to content
GET /v1/stats

Chain stats

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/aurora-api

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

Get an API key

Code snippets

curl "https://api.oanor.com/aurora-api/v1/stats" \
  -H "x-oanor-key: oanor_test_..."
await fetch("https://api.oanor.com/aurora-api/v1/stats", {
  headers: { "x-oanor-key": "oanor_test_..." }
});
$ch = curl_init("https://api.oanor.com/aurora-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/aurora-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.08,
            "slow": 0.08,
            "average": 0.08
        },
        "total_blocks": 201818777,
        "coin_price_usd": null,
        "gas_used_today": "9314365187",
        "market_cap_usd": 0,
        "total_addresses": "12396323",
        "total_transactions": "80433774",
        "transactions_today": "36899",
        "network_utilization_percent": 3.344098331581336e-10
    },
    "meta": {
        "timestamp": "2026-06-08T09:49:47.060Z",
        "request_id": "e243b63b-b6c9-442a-b886-f98d248ff01d"
    },
    "status": "ok",
    "message": "Stats retrieved successfully",
    "success": true
}