/v1/info
Live network status: weave height, block count, peers, node version
Essayez-le en direct
10 appels gratuits par jour — sans inscription, sans clé API. Passe par la passerelle oanor.
Ça marche. Récupérez une clé API et utilisez-la dans votre projet.
Obtenez une clé APIExtraits de code
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_..."}
)
Exemple de réponse
Une réponse réelle de ce endpoint, capturée lors du dernier contrôle de santé.
{
"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
}