/v1/token
ERC-20 token metadata
Try it live
10 free calls per day — no sign-up, no API key. Goes through the oanor gateway.
It works. Grab an API key and use it in your project.
Get an API keyCode snippets
curl "https://api.oanor.com/fuse-api/v1/token" \ -H "x-oanor-key: oanor_test_..."
await fetch("https://api.oanor.com/fuse-api/v1/token", {
headers: { "x-oanor-key": "oanor_test_..." }
});
$ch = curl_init("https://api.oanor.com/fuse-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/fuse-api/v1/token",
headers={"x-oanor-key": "oanor_test_..."}
)
Example response
A real response from this endpoint, captured by the latest health check.
{
"data": {
"token": {
"icon": "https://assets.coingecko.com/coins/images/69316/small/usdc.jpg?1758186473",
"name": "Stargate Bridged USDC",
"type": "ERC-20",
"symbol": "USDC.E",
"holders": null,
"decimals": 6,
"total_supply": "52883023035",
"exchange_rate_usd": 0.999626,
"circulating_market_cap": "37116523.52246963"
}
},
"meta": {
"timestamp": "2026-06-08T09:49:29.643Z",
"request_id": "c7bdb3f2-3e83-47af-9b5b-c7e8c3f22688"
},
"status": "ok",
"message": "Token retrieved successfully",
"success": true
}