/v1/stats
Chain stats
Try it live
10 free calls per day — no sign-up, no API key. Goes through the oanor gateway.
It works. Grab an API key and use it in your project.
Get an API keyCode snippets
curl "https://api.oanor.com/reya-api/v1/stats" \ -H "x-oanor-key: oanor_test_..."
await fetch("https://api.oanor.com/reya-api/v1/stats", {
headers: { "x-oanor-key": "oanor_test_..." }
});
$ch = curl_init("https://api.oanor.com/reya-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/reya-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.01,
"slow": 0.01,
"average": 0.01
},
"total_blocks": 153541894,
"coin_price_usd": null,
"gas_used_today": "399879085915",
"market_cap_usd": 0,
"total_addresses": "417151",
"total_transactions": "376236280",
"transactions_today": "393757",
"network_utilization_percent": 4.1362851455062355e-7
},
"meta": {
"timestamp": "2026-06-08T09:48:54.040Z",
"request_id": "f1b9eb49-b5c5-4968-8114-feaca0e9215a"
},
"status": "ok",
"message": "Stats retrieved successfully",
"success": true
}