Vai al contenuto
GET /v1/token

Token registry record

Provalo dal vivo

10 chiamate gratuite al giorno — senza registrazione, senza chiave API. Passa dal gateway oanor.

Intestazioni personalizzate (facoltative)
api.oanor.com/hiveengine-api

Funziona. Prendi una chiave API e usala nel tuo progetto.

Ottieni una chiave API

Frammenti di codice

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

Risposta di esempio

Una risposta reale di questo endpoint, acquisita dall'ultimo 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
}