v1

latestOpenAPI 3.1.02026-07-243035381.4 MB
Token API

Get newest tokens

/v4/data/tokens/newest

400 credits per API call

Returns the newest tokens minted on the blockchain based on mint timestamp, filtered by an activity window and optional category.

Supported blockchains:

  • Ethereum - ethereum-mainnet
  • Base - base-mainnet

> 📘 Note for Free Users > > As a free user, your data is cached on a 1-day refresh cycle, and wallet queries run through tatumio.eth. This setup helps lower costs so you can easily try out the API. For real-time data, faster syncs, and the full capability of our platform, we recommend upgrading to a paid plan.

get/v4/data/tokens/newest

Query parameters

chain'ethereum-mainnet' | 'base-mainnet' required

Chains supported by the tokens and wallets endpoints.

The blockchain to work with.

timeframe'5m' | '15m' | '1h' | '3h' | '6h' | '1d'

Aggregation window used to compute the trend.

Timeframe of analysis.

pagesizenumber
Example:10

Response

OK

Example response

{
  "data": [
    {
      "rank": 1,
      "name": "Example Token",
      "tokenAddress": "0x1111111111111111111111111111111111111111",
      "symbol": "EXMPL",
      "type": "fungible",
      "fdv": 123456789.12,
      "liquidity": 2345678.9,
      "priceUSD": 1.2345,
      "priceChanges": {
        "5m": 1.1,
        "15m": 2.3,
        "1h": -0.5,
        "3h": 4.2,
        "6h": 9.9,
        "1d": 12.5
      },
      "firstMint": "2025-08-03T23:47:47Z"
    }
  ]
}