Skip to content
GET /v1/tokens

Browse/rank Aptos fungible assets

Try it live

10 free calls per day — no sign-up, no API key. Goes through the oanor gateway.

Custom headers (optional)
api.oanor.com/aptostokens-api

It works. Grab an API key and use it in your project.

Get an API key

Code snippets

curl "https://api.oanor.com/aptostokens-api/v1/tokens" \
  -H "x-oanor-key: oanor_test_..."
await fetch("https://api.oanor.com/aptostokens-api/v1/tokens", {
  headers: { "x-oanor-key": "oanor_test_..." }
});
$ch = curl_init("https://api.oanor.com/aptostokens-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/aptostokens-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 Aptos fungible-asset universe — coins and FA-standard tokens ranked by on-chain supply, each with its asset type, name, symbol, decimals, token standard and decimal-adjusted supply. The discovery layer the per-address account reader can't give you. Paginate with limit.",
        "count": 25,
        "source": "Aptos Indexer",
        "tokens": [
            {
                "name": "Indian Rupee ZVT",
                "supply": 258378696938.9273,
                "symbol": "zINR",
                "decimals": 8,
                "asset_type": "0x7d100b7d9cbececcac4505a45195fbc79bd8b85a6fff2abda190a1ae895d419c",
                "token_standard": "v2",
                "creator_address": "0xaa315f2d30d345b1de7c877786a931db746a7fe634b4e7a6f6e864a35b969b96"
            },
            {
                "name": "KingCake",
                "supply": 19999277350.512672,
                "symbol": "KingCake",
                "decimals": 9,
                "asset_type": "0xdb3428654d0492c6314bc824a5f62b6b4b35ca1e3d96f6e841341c813eb41602",
                "token_standard": "v2",
                "creator_address": "0x000000000000000000000000000000000000000000000000000000000000000a"
            },
            {
                "name": "MemeCake",
                "supply": 19997391873.88464,
                "symbol": "MemeCake",
                "decimals": 9,
                "asset_type": "0xa602707dfc639983c016ba67a7666170775ef2b0a7aa3b3663d2309959d16b60",
                "token_standard": "v2",
                "creator_address": "0x000000000000000000000000000000000000000000000000000000000000000a"
            },
            {
                "name": "MasterCake",
                "supply": 19997367893.97886,
                "symbol": "MasterCake",
                "decimals": 9,
                "asset_type": "0x0ad716f5fe7984faa9dc7323e2e515be52f5e17256510e52f730bc8c309fd063",
                "token_standard": "v2",
                "creator_address": "0x000000000000000000000000000000000000000000000000000000000000000a"
            },
            {
                "name": "ZillaCake",
                "supply": 19532091995.474823,
                "symbol": "ZillaCake",
                "decimals": 9,
                "asset_type": "0x0829f141b453f42626fe9df7742e022398d28764327d085a6537fe362aedd796",
                "token_standard": "v2",
                "creator_address": "0x000000000000000000000000000000000000000000000000000000000000000a"
            },
            {
                "name": "SolarCake",
                "supply": 18859681665.181377,
                "symbol": "SolarCake",
                "decimals": 9,
                "asset_type": "0x7c904291ba248f98f61850bd971a1a78d8e0be8e3091521b96d297342c7ca1c6",
                "token_standard": "v2",
                "creator_address": "0x000000000000000000000000000000000000000000000000000000000000000a"
            },
            {
                "name": "Ethcoin",
      
…