Skip to content
GET /v1/network

Live TRON 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/tron-api

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

Get an API key

Code snippets

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

Example response

A real response from this endpoint, captured by the latest health check.

{
    "data": {
        "block": 83445298,
        "source": "TRON",
        "version": 35,
        "block_id": "0000000004f94632143bc44d3e3bee24877b930ebacdf207046e80c71c23941e",
        "timestamp": "2026-06-09T11:38:06.000Z",
        "witness_address": "411c8163d2a981b90481dcc8ca34c0f837b3305bc6",
        "transaction_count": 1105
    },
    "meta": {
        "timestamp": "2026-06-09T11:38:11.352Z",
        "request_id": "56a4a35d-80a3-4ec1-bf5f-d8b380f8d219"
    },
    "status": "ok",
    "message": "Network state retrieved successfully",
    "success": true
}