Zum Inhalt springen
GET /v1/status

Live network status: blockchain length, sync, chain id, epoch/slot, accounts

Live testen

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

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

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

API-Key holen

Code-Snippets

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

Beispiel-Response

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

{
    "data": {
        "note": "Live Mina network status from the node daemon: the blockchain length (block height of the tip), sync status, chain id, the current consensus epoch/slot and the total number of accounts on chain.",
        "slot": 5201,
        "epoch": 49,
        "source": "Mina GraphQL",
        "chain_id": "a7351abc7ddf2ea92d1b38cc8e636c271c1dfd2c081c637f62ebc2af34eb7cc1",
        "global_slot": 355061,
        "sync_status": "SYNCED",
        "uptime_secs": 42044,
        "num_accounts": 286673,
        "blockchain_length": 532834
    },
    "meta": {
        "timestamp": "2026-06-14T17:04:32.294Z",
        "request_id": "5ee087cc-a51a-4e5f-be6c-9074b8abb81f"
    },
    "status": "ok",
    "message": "Status retrieved successfully",
    "success": true
}