Vai al contenuto
GET /v1/token

One token in full: supply, fingerprint, mint/burn counts

Provalo dal vivo

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

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

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

Ottieni una chiave API

Frammenti di codice

curl "https://api.oanor.com/cardanotokens-api/v1/token" \
  -H "x-oanor-key: oanor_test_..."
await fetch("https://api.oanor.com/cardanotokens-api/v1/token", {
  headers: { "x-oanor-key": "oanor_test_..." }
});
$ch = curl_init("https://api.oanor.com/cardanotokens-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/cardanotokens-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://butane.dev/app/markets/details?synth=MIDAS",
        "logo": true,
        "name": "MIDAS Synthetic",
        "note": "A single Cardano native token in full: its registry metadata (ticker, decimals) plus on-chain facts — the asset fingerprint, total supply, how many times it has been minted and burned, and when it was first created. Omit policy_id for a registry token.",
        "source": "Koios",
        "ticker": "MIDAS",
        "decimals": 9,
        "policy_id": "00000000000410c2d9e01e8ec78ab1dc6bbc383fae76cbe2689beb02",
        "asset_name": "4d49444153",
        "burn_count": 212,
        "mint_count": 278,
        "description": "Midas (MIDAS) is a synthetic asset on the Butane protocol that tracks a weighted basket of PAXG and XAUT, providing seamless exposure to their combined market value.",
        "fingerprint": "asset17nkk7q20qefetcu4er9l0pt4jlmnarfz2ccwa4",
        "total_supply": "16262396157",
        "creation_time": 1740418471
    },
    "meta": {
        "timestamp": "2026-06-14T17:04:25.762Z",
        "request_id": "05680a07-ac1d-45df-b20c-a9d086068b23"
    },
    "status": "ok",
    "message": "Token retrieved successfully",
    "success": true
}