Aller au contenu
GET /v1/token

Token registry record

Essayez-le en direct

10 appels gratuits par jour — sans inscription, sans clé API. Passe par la passerelle oanor.

En-têtes personnalisés (facultatif)
api.oanor.com/hiveengine-api

Ça marche. Récupérez une clé API et utilisez-la dans votre projet.

Obtenez une clé API

Extraits de code

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_..."}
)

Exemple de réponse

Une réponse réelle de ce endpoint, capturée lors du dernier contrôle de santé.

{
    "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
}