Smart Money Trends

Tracks net inflows/outflows by smart money wallets across 24h, 7d, and 30d periods. Helps identify accumulation or distribution patterns and spot tokens gaining attention from top market participants.

Endpoint

GET https://api.dapplooker.com/v1/smart-money-trends

💡 Pro Tips

  • Use this endpoint to see where smart money is flowing — compare inflows vs. outflows to detect accumulation trends.

  • Multi-timeframe data (24h/7d/30d) makes it easy to catch early rotations or confirm sustained buying/selling pressure.

  • Great for alpha hunting — track which tokens are attracting whales and sophisticated traders before retail catches up.

Query Parameters

Parameter name

Type

Mandatory

Description

api_key

string

Yes

Your unique API key used for authentication

token_tickers

string

No

Comma-separated token tickers (upto 30)

token_addresses

string

No

Comma-separated token addresses (upto 30)

Sample Request

# With Token Tickers
curl --location 'https://api.dapplooker.com/v1/smart-money-trends?api_key=<API_KEY>&token_tickers=VIRTUAL'

# With Token Addresses
curl --location 'https://api.dapplooker.com/v1/smart-money-trends?api_key=<API_KEY>&token_addresses=0x0b3e328455c4059eeb9e3f84b5543f74e24e7e1b'

Sample Response

{
  "success": true,
  "data": [
    {
      "symbol": "VIRTUAL",
      "token_address": "0x0b3e328455c4059eeb9e3f84b5543f74e24e7e1b",
      "net_inflow": {
        "usd_value_24h": 39919.6,
        "token_24h": 31682.2,
        "usd_value_7d": 317994.8,
        "token_7d": 252376.8,
        "usd_value_30d": 1279723,
        "token_30d": 1015653.2
      },
      "net_outflow": {
        "usd_value_24h": 32335.8,
        "token_24h": 25663.3,
        "usd_value_7d": 292363.2,
        "token_7d": 232034.3,
        "usd_value_30d": 1084320.6,
        "token_30d": 860571.9
      }
    }
  ]
}

Response Fields Explanation

Token Info

  • symbol (string) — Token name

  • token_address (string) — Contract address of the token

Net Inflow / Net Outflow

Each object shows token movements from the Top 50 Smart Users over multiple timeframes:

  • usd_value_24h (decimal) — USD value in the last 24h

  • token_24h (decimal) — Token amount in the last 24h

  • usd_value_7d (decimal) — USD value in the last 7d

  • token_7d (decimal) — Token amount in the last 7d

  • usd_value_30d (decimal) — USD value in the last 30d

  • token_30d (decimal) — Token amount in the last 30d

Last updated

Was this helpful?