/v1/tokens
The verified token registry: ticker, decimals, description, logo
Probeer het live
10 gratis calls per dag — geen registratie, geen API-key. Loopt via de oanor-gateway.
Het werkt. Haal een API-key op en gebruik hem in je project.
Verkrijg een API-sleutelCodefragmenten
curl "https://api.oanor.com/cardanotokens-api/v1/tokens" \ -H "x-oanor-key: oanor_test_..."
await fetch("https://api.oanor.com/cardanotokens-api/v1/tokens", {
headers: { "x-oanor-key": "oanor_test_..." }
});
$ch = curl_init("https://api.oanor.com/cardanotokens-api/v1/tokens");
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/tokens",
headers={"x-oanor-key": "oanor_test_..."}
)
Voorbeeldrespons
Een echte respons van dit endpoint, vastgelegd bij de laatste health check.
{
"data": {
"note": "The Cardano verified token registry — native tokens that have submitted curated off-chain metadata (ticker, decimals, description, logo). Each is identified by policy_id + asset_name (hex). Paginate with limit & offset.",
"count": 20,
"offset": 0,
"source": "Koios",
"tokens": [
{
"url": "https://butane.dev/app/markets/details?synth=MIDAS",
"logo": true,
"name": "MIDAS Synthetic",
"ticker": "MIDAS",
"decimals": 9,
"policy_id": "00000000000410c2d9e01e8ec78ab1dc6bbc383fae76cbe2689beb02",
"asset_name": "4d49444153",
"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."
},
{
"url": "https://fivebinaries.com/nutcoin",
"logo": true,
"name": "nutcoin",
"ticker": "NUT",
"decimals": 0,
"policy_id": "00000002df633853f6a47465c9496721d2d5b1291b8398016c0e87ae",
"asset_name": "6e7574636f696e",
"description": "The legendary Nutcoin, the first native asset minted on Cardano."
},
{
"url": "https://github.com/incremental-series/cardano-incy",
"logo": true,
"name": "Incy",
"ticker": "INCY",
"decimals": 6,
"policy_id": "0000001c1f5134859ee40556e75834b9929d1b393ab94858a3d27ae0",
"asset_name": "494e4359",
"description": "An incremental-series token."
},
{
"url": null,
"logo": true,
"name": "Chad",
"ticker": "CHAD",
"decimals": 0,
"policy_id": "0002b854b7b086fc6c2f9bd37347214f637f59f6bbd73f6f839036e0",
"asset_name": "43484144",
"description": "In God We Trust. Real Chads love Jesus Christ."
},
{
"url": null,
"logo": true,
"name": "SOLANA",
"ticker": "SOL",
"decimals": 0,
"policy_id": "000d5e595f97381e7b624f48bff438872377f8f599a19109b963ba52",
"asset_name": "534f4c414e41",
"description": "WHAT IF SOLANA BECOMES THE NUMER ONE MEME ON CARDANO"
},
{
"url": "https://www.hodlerstaking.com/",
"logo": true,
"name": "Hodler Coalition Coin",
"ticker": "HODLR",
"decimals": 4,
"policy_id": "00109530994ea381c0bfe0936c85ea01bfe2765c24ef6dad5740c33e",
"asset_name": "486f646c657220436f616c6974696f6e20436f696e",
…