/v1/system
Current epoch system state
Probeer het live
10 gratis calls per dag — geen registratie, geen API-key. Loopt via de oanor-gateway.
Het werkt. Haal een API-key op en gebruik hem in je project.
Verkrijg een API-sleutelCodefragmenten
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_..."}
)
Voorbeeldrespons
Een echte respons van dit endpoint, vastgelegd bij de laatste 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
}