/v1/network
Live Algorand chain state
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/algorand-api/v1/network" \ -H "x-oanor-key: oanor_test_..."
await fetch("https://api.oanor.com/algorand-api/v1/network", {
headers: { "x-oanor-key": "oanor_test_..." }
});
$ch = curl_init("https://api.oanor.com/algorand-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/algorand-api/v1/network",
headers={"x-oanor-key": "oanor_test_..."}
)
Example response
A real response from this endpoint, captured by the latest health check.
{
"data": {
"source": "Algorand (AlgoNode)",
"last_round": 61998372,
"total_algo": 9685339464.889338,
"online_algo": 2045822890.982087,
"catchup_time": 0,
"supply_round": 61998372,
"time_since_last_round_ns": 1865735767
},
"meta": {
"timestamp": "2026-06-09T20:24:50.188Z",
"request_id": "d318caac-97c5-4f7c-8498-6093511576f0"
},
"status": "ok",
"message": "Network state retrieved successfully",
"success": true
}