/v1/status
Live Solana network dashboard
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/solananetwork-api/v1/status" \ -H "x-oanor-key: oanor_test_..."
await fetch("https://api.oanor.com/solananetwork-api/v1/status", {
headers: { "x-oanor-key": "oanor_test_..." }
});
$ch = curl_init("https://api.oanor.com/solananetwork-api/v1/status");
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/solananetwork-api/v1/status",
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": {
"note": "Live Solana network dashboard: the current staking epoch and how far through it the chain is (epoch_progress_pct), with an estimate of the hours left until the next epoch, the current slot and block height, the lifetime transaction count, the current transactions-per-second, the average slot time, and the RPC node health. Live, cached ~30s.",
"epoch": 986,
"health": "ok",
"source": "Public Solana JSON-RPC (getEpochInfo, getRecentPerformanceSamples, getHealth), keyless",
"slot_index": 93765,
"current_tps": 3497,
"block_height": 404125899,
"absolute_slot": 426045765,
"slots_in_epoch": 432000,
"slots_remaining": 338235,
"avg_slot_time_ms": 405,
"epoch_progress_pct": 21.7,
"lifetime_transaction_count": 520179670517,
"est_time_to_next_epoch_hours": 38.1
},
"meta": {
"timestamp": "2026-06-12T19:36:00.240Z",
"request_id": "711cf4c6-69cd-4ad2-9c6e-f266e1bbaa97"
},
"status": "ok",
"message": "Status retrieved successfully",
"success": true
}