/v1/stats
Network statistics
Provalo dal vivo
10 chiamate gratuite al giorno — senza registrazione, senza chiave API. Passa dal gateway oanor.
Funziona. Prendi una chiave API e usala nel tuo progetto.
Ottieni una chiave APIFrammenti di codice
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_..."}
)
Risposta di esempio
Una risposta reale di questo endpoint, acquisita dall'ultimo health check.
{
"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
}