Zum Inhalt springen
GET /v1/network

Live chain state

Live testen

10 freie Calls pro Tag — keine Anmeldung, kein API-Key. Geht durchs oanor-Gateway.

Eigene Header (optional)
api.oanor.com/sui-api

Funktioniert. Hol dir einen API-Key und nutze sie in deinem Projekt.

API-Key holen

Code-Snippets

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

Beispiel-Response

Echte Antwort dieses Endpoints, erfasst beim letzten Health-Check.

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