/v1/status
Live network status: blockchain length, sync, chain id, epoch/slot, accounts
Try it live
10 free calls per day — no sign-up, no API key. Goes through the oanor gateway.
It works. Grab an API key and use it in your project.
Get an API keyCode 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_..."}
)
Example response
A real response from this endpoint, captured by the latest 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
}