/v1/network
Latest TON masterchain block (chain tip)
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/ton-api/v1/network" \ -H "x-oanor-key: oanor_test_..."
await fetch("https://api.oanor.com/ton-api/v1/network", {
headers: { "x-oanor-key": "oanor_test_..." }
});
$ch = curl_init("https://api.oanor.com/ton-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/ton-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": "TON",
"source": "toncenter",
"latest_block": {
"seqno": 72672042,
"shard": "-9223372036854775808",
"root_hash": "dSYuOAOe6oTMXS5mYTdTYPZWIvIfsGZi0emqJoZyL68=",
"workchain": -1
}
},
"meta": {
"timestamp": "2026-06-11T16:47:29.242Z",
"request_id": "925e22ea-1bb6-4913-a483-5e9784238d42"
},
"status": "ok",
"message": "Network info retrieved successfully",
"success": true
}