Naar de inhoud
GET /v1/status

Chain status

Probeer het live

10 gratis calls per dag — geen registratie, geen API-key. Loopt via de oanor-gateway.

Aangepaste headers (optioneel)
api.oanor.com/sophon-api

Het werkt. Haal een API-key op en gebruik hem in je project.

Verkrijg een API-sleutel

Codefragmenten

curl "https://api.oanor.com/sophon-api/v1/status" \
  -H "x-oanor-key: oanor_test_..."
await fetch("https://api.oanor.com/sophon-api/v1/status", {
  headers: { "x-oanor-key": "oanor_test_..." }
});
$ch = curl_init("https://api.oanor.com/sophon-api/v1/status");
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/sophon-api/v1/status",
    headers={"x-oanor-key": "oanor_test_..."}
)

Voorbeeldrespons

Een echte respons van dit endpoint, vastgelegd bij de laatste health check.

{
    "data": {
        "chain": "Sophon",
        "chain_id": 50104,
        "network_id": 50104,
        "rpc_healthy": true,
        "latest_block": 29483592,
        "native_symbol": "SOPH",
        "client_version": "zkSync/v2.0"
    },
    "meta": {
        "timestamp": "2026-06-15T20:40:29.894Z",
        "request_id": "a87bf246-112d-408d-a48b-400f04aadca1"
    },
    "status": "ok",
    "message": "Chain status retrieved successfully",
    "success": true
}