Ir al contenido
GET /v1/token

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

Pruébalo en vivo

10 llamadas gratis al día — sin registro, sin clave API. Pasa por el gateway de oanor.

Encabezados personalizados (opcional)
api.oanor.com/cardanotokens-api

Funciona. Consigue una clave API y úsala en tu proyecto.

Obtener una clave API

Fragmentos de código

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

Respuesta de ejemplo

Una respuesta real de este endpoint, capturada en la última comprobación de estado.

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