/v1/stats
Chain stats
Live testen
10 freie Calls pro Tag — keine Anmeldung, kein API-Key. Geht durchs oanor-Gateway.
Funktioniert. Hol dir einen API-Key und nutze sie in deinem Projekt.
API-Key holenCode-Snippets
curl "https://api.oanor.com/kcc-api/v1/stats" \ -H "x-oanor-key: oanor_test_..."
await fetch("https://api.oanor.com/kcc-api/v1/stats", {
headers: { "x-oanor-key": "oanor_test_..." }
});
$ch = curl_init("https://api.oanor.com/kcc-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/kcc-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": 1.27,
"slow": 1.26,
"average": 1.26
},
"total_blocks": 52788207,
"coin_price_usd": null,
"gas_used_today": "257025120",
"market_cap_usd": 0,
"total_addresses": "1192762",
"total_transactions": "225874322",
"transactions_today": "2347",
"network_utilization_percent": 0.0249375
},
"meta": {
"timestamp": "2026-06-08T09:49:36.159Z",
"request_id": "d5ff5841-70f1-4343-816d-40e9e31835af"
},
"status": "ok",
"message": "Stats retrieved successfully",
"success": true
}