/v1/token
Full TRC-20 token metadata + market data
Essayez-le en direct
10 appels gratuits par jour — sans inscription, sans clé API. Passe par la passerelle oanor.
Ça marche. Récupérez une clé API et utilisez-la dans votre projet.
Obtenez une clé APIExtraits de code
curl "https://api.oanor.com/trc20-api/v1/token" \ -H "x-oanor-key: oanor_test_..."
await fetch("https://api.oanor.com/trc20-api/v1/token", {
headers: { "x-oanor-key": "oanor_test_..." }
});
$ch = curl_init("https://api.oanor.com/trc20-api/v1/token");
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/token",
headers={"x-oanor-key": "oanor_test_..."}
)
Exemple de réponse
Une réponse réelle de ce endpoint, capturée lors du dernier contrôle de santé.
{
"data": {
"icon": "https://static.tronscan.org/production/logo/usdtlogo.png",
"name": "Tether USD",
"note": "Live TRC-20 token metadata and market data from TronScan. total_supply is the raw integer (with decimals applied); divide by decimals for the human amount.",
"source": "TronScan",
"symbol": "USDT",
"holders": 74396776,
"contract": "TR7NHqjeKQxGTCi8q8ZY4pL8otSzgjLj6t",
"decimals": 6,
"verified": false,
"price_usd": 0.9994104987675522,
"volume_24h": 42668573581.89,
"total_supply": "89341574028133753",
"liquidity_24h": 162078686.81751904,
"market_cap_usd": 89288907060.13535,
"issue_timestamp": 0
},
"meta": {
"timestamp": "2026-06-14T08:04:05.130Z",
"request_id": "649fde03-eca6-437c-bc6c-2b8b448e6d6e"
},
"status": "ok",
"message": "Token retrieved successfully",
"success": true
}