/v1/token
Token registry record
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/hiveengine-api/v1/token" \ -H "x-oanor-key: oanor_test_..."
await fetch("https://api.oanor.com/hiveengine-api/v1/token", {
headers: { "x-oanor-key": "oanor_test_..." }
});
$ch = curl_init("https://api.oanor.com/hiveengine-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/hiveengine-api/v1/token",
headers={"x-oanor-key": "oanor_test_..."}
)
Example response
A real response from this endpoint, captured by the latest health check.
{
"data": {
"url": "https://inleo.io",
"icon": "https://images.hive.blog/DQmTcMRb769g2g5qfbsAVEGumuFj5gmo4oKpnqMQAp6QLNY/image.png?format=match&mode=fit",
"name": "Leo",
"chain": "Hive-Engine",
"issuer": "leo.tokens",
"source": "Hive-Engine",
"supply": 1000000000,
"symbol": "LEO",
"precision": 3,
"max_supply": 1000000000,
"description": "NLEO is building a thriving creator economy that is centered around digital ownership, tokenization and communities. Our flagship application (inleo.io) features a \"twitter-like\" feeling on Web3. The underlying architecture is built entirely on a blockchain, providing users with immutable digital identities.",
"total_staked": 13371200.071,
"transactions": 4,
"staking_enabled": true,
"circulating_supply": 29632414.93,
"delegation_enabled": true
},
"meta": {
"timestamp": "2026-06-11T16:46:59.213Z",
"request_id": "beb4de02-8dcd-4090-a068-e4b661156eef"
},
"status": "ok",
"message": "Token retrieved successfully",
"success": true
}