/v1/stats
Network statistics
Probeer het live
10 gratis calls per dag — geen registratie, geen API-key. Loopt via de oanor-gateway.
Het werkt. Haal een API-key op en gebruik hem in je project.
Verkrijg een API-sleutelCodefragmenten
curl "https://api.oanor.com/world-api/v1/stats" \ -H "x-oanor-key: oanor_test_..."
await fetch("https://api.oanor.com/world-api/v1/stats", {
headers: { "x-oanor-key": "oanor_test_..." }
});
$ch = curl_init("https://api.oanor.com/world-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/world-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": 0.01,
"slow": 0.01,
"average": 0.01
},
"total_blocks": 30788060,
"coin_price_usd": null,
"gas_used_today": "431260843807",
"market_cap_usd": 0,
"total_addresses": "225240012",
"total_transactions": "768439274",
"transactions_today": "1447202",
"network_utilization_percent": 2.98293695
},
"meta": {
"timestamp": "2026-06-08T09:51:05.811Z",
"request_id": "0a49cbb1-e6fe-43c5-918f-0a869f55192d"
},
"status": "ok",
"message": "Stats retrieved successfully",
"success": true
}