/v1/system
Current epoch system state
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/suivalidators-api/v1/system" \ -H "x-oanor-key: oanor_test_..."
await fetch("https://api.oanor.com/suivalidators-api/v1/system", {
headers: { "x-oanor-key": "oanor_test_..." }
});
$ch = curl_init("https://api.oanor.com/suivalidators-api/v1/system");
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/suivalidators-api/v1/system",
headers={"x-oanor-key": "oanor_test_..."}
)
Example response
A real response from this endpoint, captured by the latest health check.
{
"data": {
"note": "The current Sui epoch's system state: total stake, validator count, reference gas price, storage fund and epoch timing.",
"epoch": "1158",
"source": "Sui fullnode JSON-RPC",
"epoch_start_ms": 1781395521723,
"total_stake_sui": 7227128568.64594,
"protocol_version": "124",
"active_validators": 129,
"epoch_duration_ms": 86400000,
"reference_gas_price": 100,
"system_state_version": "2",
"storage_fund_total_sui": 1447745.1506632,
"pending_active_validators": 0,
"stake_subsidy_current_epoch_sui": 313810.59609
},
"meta": {
"timestamp": "2026-06-14T08:03:54.254Z",
"request_id": "f5f99b21-c7de-4793-8753-2153bbf66840"
},
"status": "ok",
"message": "System state retrieved successfully",
"success": true
}