/v1/token
ERC-20 token detail
Live testen
10 freie Calls pro Tag — keine Anmeldung, kein API-Key. Geht durchs oanor-Gateway.
Funktioniert. Hol dir einen API-Key und nutze sie in deinem Projekt.
API-Key holenCode-Snippets
curl "https://api.oanor.com/astar-api/v1/token" \ -H "x-oanor-key: oanor_test_..."
await fetch("https://api.oanor.com/astar-api/v1/token", {
headers: { "x-oanor-key": "oanor_test_..." }
});
$ch = curl_init("https://api.oanor.com/astar-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/astar-api/v1/token",
headers={"x-oanor-key": "oanor_test_..."}
)
Beispiel-Response
Echte Antwort dieses Endpoints, erfasst beim letzten Health-Check.
{
"data": {
"token": {
"icon": "https://assets.coingecko.com/coins/images/877/small/Chainlink_Logo_500.png?1760023405",
"name": "Chainlink",
"type": "ERC-20",
"symbol": "LINK",
"address": "0x31EFB841d5e0b4082F7E1267dab8De1b853f2A9d",
"holders": 1,
"decimals": 18,
"total_supply": "111111111086",
"exchange_rate_usd": 8.01,
"circulating_market_cap": "5824140984.829477"
}
},
"meta": {
"timestamp": "2026-06-08T18:26:35.911Z",
"request_id": "1992907a-28e6-4436-8f50-eb1817c50528"
},
"status": "ok",
"message": "Token retrieved successfully",
"success": true
}