Ir al contenido
GET /v1/checkpoint

The latest Sui checkpoint

Pruébalo en vivo

10 llamadas gratis al día — sin registro, sin clave API. Pasa por el gateway de oanor.

Encabezados personalizados (opcional)
api.oanor.com/suinetwork-api

Funciona. Consigue una clave API y úsala en tu proyecto.

Obtener una clave API

Fragmentos de código

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_..."}
)

Respuesta de ejemplo

Una respuesta real de este endpoint, capturada en la última comprobación de estado.

{
    "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
}