/v1/stats
Network 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/flow-api/v1/stats" \ -H "x-oanor-key: oanor_test_..."
await fetch("https://api.oanor.com/flow-api/v1/stats", {
headers: { "x-oanor-key": "oanor_test_..." }
});
$ch = curl_init("https://api.oanor.com/flow-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/flow-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": 16.9,
"slow": 15.84,
"average": 16.9
},
"total_blocks": 68155302,
"coin_price_usd": 0.02738264,
"gas_used_today": "4453099984",
"market_cap_usd": 45636075.54243525,
"total_addresses": "866470",
"total_transactions": "62736370",
"transactions_today": "67448",
"network_utilization_percent": 0.01134945
},
"meta": {
"timestamp": "2026-06-08T18:25:38.948Z",
"request_id": "07fc467a-e1ce-4e47-8f16-22b7efca587d"
},
"status": "ok",
"message": "Stats retrieved successfully",
"success": true
}