/v1/meta
Spec
Probeer het live
10 gratis calls per dag — geen registratie, geen API-key. Loopt via de oanor-gateway.
Het werkt. Haal een API-key op en gebruik hem in je project.
Verkrijg een API-sleutelCodefragmenten
curl "https://api.oanor.com/tron-api/v1/meta" \ -H "x-oanor-key: oanor_test_..."
await fetch("https://api.oanor.com/tron-api/v1/meta", {
headers: { "x-oanor-key": "oanor_test_..." }
});
$ch = curl_init("https://api.oanor.com/tron-api/v1/meta");
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/meta",
headers={"x-oanor-key": "oanor_test_..."}
)
Voorbeeldrespons
Een echte respons van dit endpoint, vastgelegd bij de laatste health check.
{
"data": {
"source": "TronGrid public API (live)",
"service": "tron-api",
"endpoints": {
"GET /v1/meta": "This document.",
"GET /v1/account": "An address's TRX + TRC20 token balances (address=TNaRAoLUyYEV2uF7GUrzSjRQTU8v5ZJ5VR).",
"GET /v1/network": "Live TRON chain state: latest block, timestamp, super-representative, tx count.",
"GET /v1/transfers": "An address's recent TRC20 token transfers — USDT flow (address=, limit).",
"GET /v1/transactions": "An address's recent system transactions (address=, limit)."
},
"description": "Live on-chain data from the TRON blockchain via the public TronGrid API: any address's state (TRX balance, creation time, and decoded balances of the major TRC20 stablecoins/tokens — USDT, USDC, USDD and more); the account's recent TRC20 token transfers (counterparty, token, amount, direction, time) — the raw USDT flow TRON is known for; the account's recent system transactions (type, result, block, time); and the live chain state (latest block, timestamp, producing super-representative, transaction count). Live, no key, nothing stored. Distinct from the XRP Ledger, Stellar, EVM and Solana on-chain APIs and from price feeds — this is TRON account state, TRC20/USDT transfers, transactions and block production.",
"latest_block": 83445299,
"upstream_status": "ok"
},
"meta": {
"timestamp": "2026-06-09T11:38:12.355Z",
"request_id": "c7a73e41-b31e-4aa2-8444-661b5ed6d96a"
},
"status": "ok",
"message": "Meta",
"success": true
}