Skip to content
GET /v1/network

Live sharded chain state

Try it live

10 free calls per day — no sign-up, no API key. Goes through the oanor gateway.

Custom headers (optional)
api.oanor.com/multiversx-api

It works. Grab an API key and use it in your project.

Get an API key

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

Example response

A real response from this endpoint, captured by the latest 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
}