Aller au contenu
GET /v1/token

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

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

Exemple de réponse

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

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