/v1/tokens
Browse/rank FA tokens & NFT collections
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/tezostokens-api/v1/tokens" \ -H "x-oanor-key: oanor_test_..."
await fetch("https://api.oanor.com/tezostokens-api/v1/tokens", {
headers: { "x-oanor-key": "oanor_test_..." }
});
$ch = curl_init("https://api.oanor.com/tezostokens-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/tezostokens-api/v1/tokens",
headers={"x-oanor-key": "oanor_test_..."}
)
Example response
A real response from this endpoint, captured by the latest health check.
{
"data": {
"note": "Browse the Tezos token universe — FA1.2 and FA2 tokens and NFT collections ranked by holder count, each with its TzKT token id, contract, standard, name, symbol, decimals, holder/transfer counts, decimal-adjusted total supply and (for NFTs) artwork image. Filter standard=fa1.2 or fa2. The discovery layer the per-address balance reader can't give you.",
"count": 25,
"source": "TzKT",
"tokens": [
{
"name": "4/23 McLaren F1 Collectible",
"image": "https://ipfs.io/ipfs/QmfPXEXBUUnWFxU7xbHLBGFvnBaE9E3FnuiVHaX9oiGaBX",
"is_nft": true,
"symbol": null,
"contract": "McLaren F1 Team 23/23 Collectibles",
"decimals": 0,
"standard": "fa2",
"token_id": 543829011726337,
"total_supply": 214925,
"holders_count": 210886,
"transfers_count": 229069,
"contract_address": "KT1BRADdqGk2eLmMqvyWzqVmPQ1RCBCbW5dY",
"on_chain_token_id": "4"
},
{
"name": "3/23 McLaren F1 Collectible",
"image": "https://ipfs.io/ipfs/QmQ9HZsGWdeuT9WtAhNJwYQgwxqjvRdGa7c57PsRPzMvdu",
"is_nft": true,
"symbol": null,
"contract": "McLaren F1 Team 23/23 Collectibles",
"decimals": 0,
"standard": "fa2",
"token_id": 501858033467393,
"total_supply": 213998,
"holders_count": 209291,
"transfers_count": 230380,
"contract_address": "KT1BRADdqGk2eLmMqvyWzqVmPQ1RCBCbW5dY",
"on_chain_token_id": "3"
},
{
"name": "5/23 McLaren F1 Collectible",
"image": "https://ipfs.io/ipfs/QmeFdtYe843MA4tdkoGKtSy7r1KHTAXz3ASMWMkb6ZjPAm",
"is_nft": true,
"symbol": null,
"contract": "McLaren F1 Team 23/23 Collectibles",
"decimals": 0,
"standard": "fa2",
"token_id": 554704187686913,
"total_supply": 211921,
"holders_count": 207445,
"transfers_count": 226258,
"contract_address": "KT1BRADdqGk2eLmMqvyWzqVmPQ1RCBCbW5dY",
"on_chain_token_id": "5"
},
{
"name": "7/23 McLaren F1 Collectible",
"image": "https://ipfs.io/ipfs/QmWZTowFykAh3JbQnNTFqE4Ge4FRRsmKisdUw8vpNKidN2",
"is_nft": true,
"symbol": null,
"contract": "McLaren F1 Team 23/23 Collectibles",
"decimals": 0,
"standard": "fa2",
"token_id": 586832835248129,
"total_supply": 184141,
"holders_count": 178618,
"transfers_count": 198683,
"contract_add
…