/v1/meta
Service metadata & live sample
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/trc20-api/v1/meta" \ -H "x-oanor-key: oanor_test_..."
await fetch("https://api.oanor.com/trc20-api/v1/meta", {
headers: { "x-oanor-key": "oanor_test_..." }
});
$ch = curl_init("https://api.oanor.com/trc20-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/trc20-api/v1/meta",
headers={"x-oanor-key": "oanor_test_..."}
)
Voorbeeldrespons
Een echte respons van dit endpoint, vastgelegd bij de laatste health check.
{
"data": {
"sample": {
"symbol": "USDT",
"holders": 74396776
},
"source": "public TronScan API (apilist.tronscanapi.com), keyless",
"service": "trc20-api",
"endpoints": {
"GET /v1/meta": "This document.",
"GET /v1/token": "Full TRC-20 token metadata + market data (contract=TR7NHqj...).",
"GET /v1/ranking": "Top TRC-20 tokens by market cap / holders / volume (order, limit).",
"GET /v1/transfers": "A token's most recent transfers decoded (contract, limit)."
},
"description": "Read live TRC-20 token data on TRON from the public TronScan API: resolve any contract to name/symbol/decimals/supply/holders/verification plus live USD price, market cap and volume; stream a token's recent transfers; or rank the TRC-20 universe by market cap or holders. The token-level view for TRON wallets, explorers and trading tools. Live, short cache only.",
"upstream_status": "ok"
},
"meta": {
"timestamp": "2026-06-14T08:04:05.476Z",
"request_id": "f90ad65b-3c56-45dd-a9b6-c4b58fbf7ab4"
},
"status": "ok",
"message": "Meta",
"success": true
}