/v1/network
Live chain state
Pruébalo en vivo
10 llamadas gratis al día — sin registro, sin clave API. Pasa por el gateway de oanor.
Funciona. Consigue una clave API y úsala en tu proyecto.
Obtener una clave APIFragmentos de código
curl "https://api.oanor.com/sui-api/v1/network" \ -H "x-oanor-key: oanor_test_..."
await fetch("https://api.oanor.com/sui-api/v1/network", {
headers: { "x-oanor-key": "oanor_test_..." }
});
$ch = curl_init("https://api.oanor.com/sui-api/v1/network");
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/sui-api/v1/network",
headers={"x-oanor-key": "oanor_test_..."}
)
Respuesta de ejemplo
Una respuesta real de este endpoint, capturada en la última comprobación de estado.
{
"data": {
"epoch": 1154,
"source": "Sui",
"epoch_start": "2026-06-10T00:05:19.523Z",
"total_stake_sui": 7224439389.100764,
"chain_identifier": "35834a8a",
"protocol_version": 124,
"latest_checkpoint": "285403002",
"reference_gas_price": 100,
"system_state_version": 2,
"active_validator_count": 129,
"total_transaction_blocks": "5333081645"
},
"meta": {
"timestamp": "2026-06-10T14:02:39.172Z",
"request_id": "27a3d26e-33e6-4f8a-9a73-15e946de752c"
},
"status": "ok",
"message": "Network state retrieved successfully",
"success": true
}