Token Screener

Data Retention Limits

This endpoint only supports recent data:

  • Minute Granularity: Last 130 minutes

  • Hourly Granularity: Last 50 hours

  • Daily Granularity: Last 50 days

Historical Analysis Not Supported:

  • to_date must be within 5 minutes of current time

  • Historical snapshots (e.g., "show me January 2024") are not available

Get Token Screening Data

post

Discover and screen tokens across multiple blockchains with advanced filtering capabilities. This endpoint helps identify trending tokens, new launches, and smart money movements by combining metrics like volume, liquidity, market cap, and trading activity.

What it helps to answer:

  1. Which tokens are experiencing significant smart money activity across different chains?

  2. How do market metrics (price, volume, liquidity) correlate with holder behavior and smart money movements?

  3. What tokens show strong fundamentals in terms of holder distribution and trading patterns?

  4. Which emerging tokens are attracting fresh wallet inflows while maintaining healthy smart money participation?

Authorizations
apiKeystringRequired

API key for authentication

Body

Request model for Token Screener endpoint.

filtersany ofOptional

Additional filters to apply

Example: {"only_smart_money":true,"token_age_days":{"max":365,"min":1}}
order_byany ofOptional

Custom sort order to override the endpoint's default ordering.

Examples:

  • [{"field": "buy_volume", "direction": "DESC"}] - Sort by buy volume descending
  • [{"field": "price_change", "direction": "DESC"}] - Sort by price change descending
Responses
post
/api/v1/token-screener
POST /api/v1/token-screener HTTP/1.1
Host: api.nansen.ai
apiKey: YOUR_API_KEY
Content-Type: application/json
Accept: */*
Content-Length: 266

{
  "chains": [
    "ethereum",
    "solana",
    "base"
  ],
  "date": {
    "from": "2025-01-01T00:00:00Z",
    "to": "2025-01-31T23:59:59Z"
  },
  "pagination": {
    "page": 1,
    "per_page": 10
  },
  "filters": {
    "only_smart_money": true,
    "token_age_days": {
      "max": 365,
      "min": 1
    }
  },
  "order_by": [
    {
      "field": "chain",
      "direction": "ASC"
    }
  ]
}
{
  "data": [
    {
      "chain": "text",
      "token_address": "text",
      "token_symbol": "text",
      "token_age_days": 1,
      "market_cap_usd": 1,
      "liquidity": 1,
      "price_usd": 1,
      "price_change": 1,
      "fdv": 1,
      "fdv_mc_ratio": 1,
      "buy_volume": 1,
      "inflow_fdv_ratio": 1,
      "outflow_fdv_ratio": 1,
      "sell_volume": 1,
      "volume": 1,
      "netflow": 1
    }
  ],
  "pagination": {
    "page": 1,
    "per_page": 10,
    "is_last_page": true
  }
}

Last updated

Was this helpful?