Aller au contenu
GET /v1/network

Live Algorand chain state

Essayez-le en direct

10 appels gratuits par jour — sans inscription, sans clé API. Passe par la passerelle oanor.

En-têtes personnalisés (facultatif)
api.oanor.com/algorand-api

Ça marche. Récupérez une clé API et utilisez-la dans votre projet.

Obtenez une clé API

Extraits de code

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

Exemple de réponse

Une réponse réelle de ce endpoint, capturée lors du dernier contrôle de santé.

{
    "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
}