/v1/token
One token in full: supply, fingerprint, mint/burn counts
Try it live
10 free calls per day — no sign-up, no API key. Goes through the oanor gateway.
It works. Grab an API key and use it in your project.
Get an API keyCode snippets
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_..."}
)
Example response
A real response from this endpoint, captured by the latest 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
}