Zum Inhalt springen
GET /v1/network

Live network status: chain id, node version, spork, protocol state version

Live testen

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

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

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

API-Key holen

Code-Snippets

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

Beispiel-Response

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

{
    "data": {
        "note": "Live Flow network status: the chain id, the access-node software version, the current spork id and the protocol state version, plus the block-height range the node is compatible with.",
        "source": "Flow access API",
        "chain_id": "flow-mainnet",
        "spork_id": "25c44a8f93f53074cc4ef043d381694b8b1f2d1a3a6ea844a9202cd0f9897733",
        "node_version": "v0.49.1",
        "protocol_version": 0,
        "compatible_end_height": 154808253,
        "protocol_state_version": 2,
        "compatible_start_height": 137390146
    },
    "meta": {
        "timestamp": "2026-06-14T17:04:32.762Z",
        "request_id": "d8092ce3-97ba-4538-99c9-570f2774ed3c"
    },
    "status": "ok",
    "message": "Network retrieved successfully",
    "success": true
}