Naar de inhoud
GET /v1/network

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

Probeer het live

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

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

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

Verkrijg een API-sleutel

Codefragmenten

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

Voorbeeldrespons

Een echte respons van dit endpoint, vastgelegd bij de laatste 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
}