Zum Inhalt springen
GET /v1/meta

Service metadata

Live testen

10 freie Calls pro Tag — keine Anmeldung, kein API-Key. Geht durchs oanor-Gateway.

Eigene Header (optional)
api.oanor.com/tronsr-api

Funktioniert. Hol dir einen API-Key und nutze sie in deinem Projekt.

API-Key holen

Code-Snippets

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_..."}
)

Beispiel-Response

Echte Antwort dieses Endpoints, erfasst beim letzten 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
}