Zum Inhalt springen
GET /v1/network

Live sharded chain state

Live testen

10 freie Calls pro Tag — keine Anmeldung, kein API-Key. Geht durchs oanor-Gateway.

Eigene Header (optional)
api.oanor.com/multiversx-api

Funktioniert. Hol dir einen API-Key und nutze sie in deinem Projekt.

API-Key holen

Code-Snippets

curl "https://api.oanor.com/multiversx-api/v1/network" \
  -H "x-oanor-key: oanor_test_..."
await fetch("https://api.oanor.com/multiversx-api/v1/network", {
  headers: { "x-oanor-key": "oanor_test_..." }
});
$ch = curl_init("https://api.oanor.com/multiversx-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/multiversx-api/v1/network",
    headers={"x-oanor-key": "oanor_test_..."}
)

Beispiel-Response

Echte Antwort dieses Endpoints, erfasst beim letzten Health-Check.

{
    "data": {
        "epoch": 2140,
        "blocks": 123207271,
        "shards": 3,
        "source": "MultiversX",
        "accounts": 9210158,
        "transactions": 609565167,
        "rounds_passed": 12277,
        "refresh_rate_ms": 6000,
        "rounds_per_epoch": 14400,
        "smart_contract_results": 418173278
    },
    "meta": {
        "timestamp": "2026-06-10T14:02:20.606Z",
        "request_id": "7e286613-e566-4d5e-891c-c9b70bfa3aad"
    },
    "status": "ok",
    "message": "Network state retrieved successfully",
    "success": true
}