Naar de inhoud
GET /v1/status

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

Probeer het live

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

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

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

Verkrijg een API-sleutel

Codefragmenten

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

Voorbeeldrespons

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