/v1/meta
Service metadata
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/tronsr-api/v1/meta" \ -H "x-oanor-key: oanor_test_..."
await fetch("https://api.oanor.com/tronsr-api/v1/meta", {
headers: { "x-oanor-key": "oanor_test_..." }
});
$ch = curl_init("https://api.oanor.com/tronsr-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/tronsr-api/v1/meta",
headers={"x-oanor-key": "oanor_test_..."}
)
Voorbeeldrespons
Een echte respons van dit endpoint, vastgelegd bij de laatste health check.
{
"data": {
"sample": {
"top_sr": "Poloniex",
"active_srs": 27,
"total_votes": 44402327796
},
"source": "public TronScan API (apilist.tronscanapi.com), keyless",
"service": "tronsr-api",
"endpoints": {
"GET /v1/meta": "This document.",
"GET /v1/stats": "Live election overview: active 27, candidates, total votes, total blocks.",
"GET /v1/witness": "One SR by address: votes, rank, production, miss rate (address; omit for top).",
"GET /v1/witnesses": "SRs/candidates ranked by votes (type=active/candidate/all, limit)."
},
"description": "Read Tron's delegated-proof-of-stake governance live from the public TronScan API: rank the Super Representatives and candidates by votes with their block production, miss rate and reward sharing; look up a single SR by address; and read a live election overview (active 27, candidate pool, total votes, total blocks). The validator-and-voting layer for Tron wallets, staking dashboards and voters. Live, short cache only.",
"upstream_status": "ok"
},
"meta": {
"timestamp": "2026-06-14T08:03:44.006Z",
"request_id": "896ef11b-7f2d-49fb-ab76-f4226a4514b9"
},
"status": "ok",
"message": "Meta",
"success": true
}