v1

latestOpenAPI 3.1.02026-07-243035381.4 MB
Token API

Get trending tokens

/v4/data/tokens/trending

250 credits per API call

Returns the top trending tokens on the specified blockchain, ranked by recent trading activity, volume, liquidity, and holder growth. Each entry includes price, market cap, liquidity, holder count, and per-timeframe (1h/4h/12h/24h) statistics for price change, volume, transactions, buyers, and sellers.

Supported blockchains:

  • Ethereum - ethereum-mainnet
  • BNB Smart Chain - bsc-mainnet
  • Polygon - polygon-mainnet
  • Avalanche - avax-mainnet
  • Arbitrum - arb-one-mainnet
  • Optimism - optimism-mainnet
  • Base - base-mainnet
  • Monad - monad-mainnet
  • Solana - solana-mainnet
get/v4/data/tokens/trending

Query parameters

chain'ethereum-mainnet' | 'bsc-mainnet' | 'polygon-mainnet' | 'avax-mainnet' | 'arb-one-mainnet' | 'optimism-mainnet' | 'base-mainnet' | 'monad-mainnet' | 'solana-mainnet' required

Chains supported by the trending tokens endpoint.

The blockchain to work with.

limitnumber
Example:100

Maximum number of trending tokens to return (1-200).

Response

OK

chain'ethereum-mainnet' | 'bsc-mainnet' | 'polygon-mainnet' | 'avax-mainnet' | 'arb-one-mainnet' | 'optimism-mainnet' | 'base-mainnet' | 'monad-mainnet' | 'solana-mainnet'

Chains supported by the trending tokens endpoint.

tokenAddressstring

Token contract address.

namestring

Token name.

uniqueNamestring nullable

Unique slug for the token, when available.

symbolstring

Token symbol or ticker.

decimalsinteger

Number of token decimals.

logostring nullable

URL of the token logo, when available.

usdPricenumber double

Current price in USD.

createdAtinteger

Unix timestamp (seconds) of token creation.

marketCapnumber

Market capitalization in USD.

liquidityUsdnumber

Approximate on-chain liquidity in USD.

holdersinteger

Number of token holders.

Example response

[
  {
    "tokenAddress": "0xc05e0e564c9292abdb52f843acedb093b78b0f45",
    "name": "Cali",
    "symbol": "CALI",
    "decimals": 9,
    "logo": "https://blockchains.tatum.io/assets/token-logos/trending/ethereum-mainnet/0xc05e0e564c9292abdb52f843acedb093b78b0f45.webp",
    "usdPrice": 0.00000121098865732,
    "createdAt": 1779974711,
    "marketCap": 509451,
    "liquidityUsd": 31081,
    "holders": 649,
    "pricePercentChange": {
      "1h": 1.52,
      "4h": 3.69,
      "12h": 4.87,
      "24h": 4.06
    },
    "totalVolume": {
      "1h": 1.52,
      "4h": 3.69,
      "12h": 4.87,
      "24h": 4.06
    },
    "transactions": {
      "1h": 1.52,
      "4h": 3.69,
      "12h": 4.87,
      "24h": 4.06
    },
    "buyTransactions": {
      "1h": 1.52,
      "4h": 3.69,
      "12h": 4.87,
      "24h": 4.06
    },
    "sellTransactions": {
      "1h": 1.52,
      "4h": 3.69,
      "12h": 4.87,
      "24h": 4.06
    },
    "buyers": {
      "1h": 1.52,
      "4h": 3.69,
      "12h": 4.87,
      "24h": 4.06
    },
    "sellers": {
      "1h": 1.52,
      "4h": 3.69,
      "12h": 4.87,
      "24h": 4.06
    }
  }
]