Zum Inhalt springen
GET /v1/stats

Network stats

Live testen

10 freie Calls pro Tag — keine Anmeldung, kein API-Key. Geht durchs oanor-Gateway.

Eigene Header (optional)
api.oanor.com/homeverse-api

Funktioniert. Hol dir einen API-Key und nutze sie in deinem Projekt.

API-Key holen

Code-Snippets

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

Beispiel-Response

Echte Antwort dieses Endpoints, erfasst beim letzten Health-Check.

{
    "data": {
        "tvl_usd": null,
        "gas_prices": {
            "fast": null,
            "slow": null,
            "average": null
        },
        "total_blocks": 2268766,
        "coin_price_usd": null,
        "gas_used_today": "102144013",
        "market_cap_usd": 0,
        "total_addresses": "53924",
        "total_transactions": "2268774",
        "transactions_today": "2515",
        "network_utilization_percent": 0.4122556363636364
    },
    "meta": {
        "timestamp": "2026-06-08T18:25:35.590Z",
        "request_id": "bb4466ca-ba42-4bd8-bc70-42185298989b"
    },
    "status": "ok",
    "message": "Stats retrieved successfully",
    "success": true
}