/v1/token
ERC-20 token detail
Provalo dal vivo
10 chiamate gratuite al giorno — senza registrazione, senza chiave API. Passa dal gateway oanor.
Funziona. Prendi una chiave API e usala nel tuo progetto.
Ottieni una chiave APIFrammenti di codice
curl "https://api.oanor.com/shibarium-api/v1/token" \ -H "x-oanor-key: oanor_test_..."
await fetch("https://api.oanor.com/shibarium-api/v1/token", {
headers: { "x-oanor-key": "oanor_test_..." }
});
$ch = curl_init("https://api.oanor.com/shibarium-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/shibarium-api/v1/token",
headers={"x-oanor-key": "oanor_test_..."}
)
Risposta di esempio
Una risposta reale di questo endpoint, acquisita dall'ultimo health check.
{
"data": {
"token": {
"icon": null,
"name": "ChainLink Token",
"type": "ERC-20",
"symbol": "LINK",
"address": "0x71052BAe71C25C78E37fD12E5ff1101A71d9018F",
"holders": 0,
"decimals": 18,
"total_supply": "0",
"exchange_rate_usd": 8.03,
"circulating_market_cap": "5829459563.552676"
}
},
"meta": {
"timestamp": "2026-06-08T18:26:19.470Z",
"request_id": "c7b4098d-f3f0-47ea-90ee-50f8defb9699"
},
"status": "ok",
"message": "Token retrieved successfully",
"success": true
}