/v1/token
ERC-20 token detail
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/homeverse-api/v1/token" \ -H "x-oanor-key: oanor_test_..."
await fetch("https://api.oanor.com/homeverse-api/v1/token", {
headers: { "x-oanor-key": "oanor_test_..." }
});
$ch = curl_init("https://api.oanor.com/homeverse-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/homeverse-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": null,
"name": "Brave Power Crystal",
"type": "ERC-20",
"symbol": "BPC",
"address": "0x7c6b91D9Be155A6Db01f749217d76fF02A7227F2",
"holders": 1848,
"decimals": 18,
"total_supply": "600890085826918854295191544",
"exchange_rate_usd": null,
"circulating_market_cap": null
}
},
"meta": {
"timestamp": "2026-06-08T18:25:37.940Z",
"request_id": "4d801ca5-9bcd-4f28-9ff0-aa6c9846692f"
},
"status": "ok",
"message": "Token retrieved successfully",
"success": true
}