/v1/info
Live network status: weave height, block count, peers, node version
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/arweave-api/v1/info" \ -H "x-oanor-key: oanor_test_..."
await fetch("https://api.oanor.com/arweave-api/v1/info", {
headers: { "x-oanor-key": "oanor_test_..." }
});
$ch = curl_init("https://api.oanor.com/arweave-api/v1/info");
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/arweave-api/v1/info",
headers={"x-oanor-key": "oanor_test_..."}
)
Example response
A real response from this endpoint, captured by the latest health check.
{
"data": {
"note": "Live Arweave network status: the weave height, total block count, number of connected peers and the node software version. height is the tip of the permaweb.",
"peers": 298,
"blocks": 1938671,
"height": 1938670,
"source": "Arweave gateway",
"network": "arweave.N.1",
"release": 92,
"version": 5,
"queue_length": 0,
"current_block": "aGP7CFK3UmS3R1I1sxhz2pfffGB9Tky7aYHBwy2ouSEYxUm5JCDxYGH8qsi7TeeD",
"node_state_latency": 1
},
"meta": {
"timestamp": "2026-06-14T17:04:34.845Z",
"request_id": "07cf0e10-0a81-4208-b0b9-e98d323bef55"
},
"status": "ok",
"message": "Info retrieved successfully",
"success": true
}