/v1/stats
Network statistics
Essayez-le en direct
10 appels gratuits par jour — sans inscription, sans clé API. Passe par la passerelle oanor.
Ça marche. Récupérez une clé API et utilisez-la dans votre projet.
Obtenez une clé APIExtraits de code
curl "https://api.oanor.com/soneium-api/v1/stats" \ -H "x-oanor-key: oanor_test_..."
await fetch("https://api.oanor.com/soneium-api/v1/stats", {
headers: { "x-oanor-key": "oanor_test_..." }
});
$ch = curl_init("https://api.oanor.com/soneium-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/soneium-api/v1/stats",
headers={"x-oanor-key": "oanor_test_..."}
)
Exemple de réponse
Une réponse réelle de ce endpoint, capturée lors du dernier contrôle de santé.
{
"data": {
"tvl_usd": null,
"gas_prices": {
"fast": 0.01,
"slow": 0.01,
"average": 0.01
},
"total_blocks": 23871784,
"coin_price_usd": 1690.55,
"gas_used_today": "119499151590",
"market_cap_usd": 204023211213.9947,
"total_addresses": "14786660",
"total_transactions": "684345061",
"transactions_today": "1858217",
"network_utilization_percent": 6.7673051
},
"meta": {
"timestamp": "2026-06-08T01:18:06.309Z",
"request_id": "befa1e91-0798-4f80-9f95-d6bddc58904f"
},
"status": "ok",
"message": "Stats retrieved successfully",
"success": true
}