/v1/network
Live network status: chain id, node version, spork, protocol state version
Provalo dal vivo
10 chiamate gratuite al giorno — senza registrazione, senza chiave API. Passa dal gateway oanor.
Funziona. Prendi una chiave API e usala nel tuo progetto.
Ottieni una chiave APIFrammenti di codice
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_..."}
)
Risposta di esempio
Una risposta reale di questo endpoint, acquisita dall'ultimo 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
}