/v1/checkpoint
The latest Sui checkpoint
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/suinetwork-api/v1/checkpoint" \ -H "x-oanor-key: oanor_test_..."
await fetch("https://api.oanor.com/suinetwork-api/v1/checkpoint", {
headers: { "x-oanor-key": "oanor_test_..." }
});
$ch = curl_init("https://api.oanor.com/suinetwork-api/v1/checkpoint");
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/suinetwork-api/v1/checkpoint",
headers={"x-oanor-key": "oanor_test_..."}
)
Risposta di esempio
Una risposta reale di questo endpoint, acquisita dall'ultimo health check.
{
"data": {
"note": "The latest Sui checkpoint (Sui's block equivalent) — its sequence number, epoch, digest, timestamp, the lifetime network transaction count and the rolling gas-cost summary for the epoch (computation and storage costs in SUI). Pass seq for a specific checkpoint, or omit for the latest.",
"epoch": 1158,
"digest": "2iqHMDdQdR21Vwech6Gayez6e5Cv9ngoJbSzThZjpieg",
"source": "Sui RPC",
"timestamp_ms": 1781437499575,
"sequence_number": 286885810,
"gas_cost_summary": {
"storage_cost_sui": 49909.5930036,
"storage_rebate_sui": 49313.990577852,
"computation_cost_sui": 634.174002119
},
"network_total_transactions": 5354360370,
"transactions_in_checkpoint": 6
},
"meta": {
"timestamp": "2026-06-14T17:03:46.781Z",
"request_id": "feee1ea2-8cd1-4f15-a41f-82dd82ff77bf"
},
"status": "ok",
"message": "Checkpoint retrieved successfully",
"success": true
}