/v1/network
Live Monero chain state
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/monero-api/v1/network" \ -H "x-oanor-key: oanor_test_..."
await fetch("https://api.oanor.com/monero-api/v1/network", {
headers: { "x-oanor-key": "oanor_test_..." }
});
$ch = curl_init("https://api.oanor.com/monero-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/monero-api/v1/network",
headers={"x-oanor-key": "oanor_test_..."}
)
Example response
A real response from this endpoint, captured by the latest health check.
{
"data": {
"chain": "Monero",
"height": 3694084,
"source": "xmrchain",
"difficulty": 681205290758,
"hashrate_hs": 5676710756.32,
"connections_in": 32,
"top_block_hash": "334286dbd45682c16b9f7cd53d42be0641cd098b887f8e41685eba01d4d8a306",
"tx_count_total": 61241471,
"connections_out": 32,
"block_size_limit": 626844,
"hardfork_version": 16,
"mempool_tx_count": 549,
"block_size_median": 313422,
"block_time_target_s": 120
},
"meta": {
"timestamp": "2026-06-11T16:47:01.082Z",
"request_id": "6f3e616e-98df-47de-9f8e-a28e89f32f78"
},
"status": "ok",
"message": "Network retrieved successfully",
"success": true
}