/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/rootstock-api/v1/stats" \ -H "x-oanor-key: oanor_test_..."
await fetch("https://api.oanor.com/rootstock-api/v1/stats", {
headers: { "x-oanor-key": "oanor_test_..." }
});
$ch = curl_init("https://api.oanor.com/rootstock-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/rootstock-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.04,
"slow": 0.03,
"average": 0.03
},
"total_blocks": 8922348,
"coin_price_usd": 63495,
"gas_used_today": "422750438",
"market_cap_usd": 107815622.30426903,
"total_addresses": "4146881",
"total_transactions": "20434551",
"transactions_today": "8514",
"network_utilization_percent": 0.9099396
},
"meta": {
"timestamp": "2026-06-08T01:18:13.302Z",
"request_id": "b0ceaaf9-8a32-474b-8768-c38c70b7f623"
},
"status": "ok",
"message": "Stats retrieved successfully",
"success": true
}