/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/energi-api/v1/stats" \ -H "x-oanor-key: oanor_test_..."
await fetch("https://api.oanor.com/energi-api/v1/stats", {
headers: { "x-oanor-key": "oanor_test_..." }
});
$ch = curl_init("https://api.oanor.com/energi-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/energi-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": 3.59,
"slow": 1.38,
"average": 1.99
},
"total_blocks": 3282747,
"coin_price_usd": null,
"gas_used_today": "10110621671",
"market_cap_usd": 0,
"total_addresses": "108640",
"total_transactions": "62822686",
"transactions_today": "68997",
"network_utilization_percent": 15.7563829
},
"meta": {
"timestamp": "2026-06-08T09:49:31.265Z",
"request_id": "744dcc31-5e5c-4ae9-bb6c-176e46e1d62d"
},
"status": "ok",
"message": "Stats retrieved successfully",
"success": true
}