Netflows

smart-money/inflows

post

This model provides net flow of tokens bought/sold by Smart Money addresses.

Questions

  1. What are the most commonly traded tokens by smart money addresses in the last day, and how does their trading volume in USD compare?

  2. Are there any new tokens (recently deployed) that have been significantly adopted by smart money traders, as indicated by the amount of USD traded?

Authorizations
Body
Responses
200

Successful response

application/json
post
POST /api/beta/smart-money/inflows HTTP/1.1
Host: api.nansen.ai
apiKey: YOUR_API_KEY
Content-Type: application/json
Accept: */*
Content-Length: 220

{
  "parameters": {
    "smFilter": [
      "180D Smart Trader",
      "Fund",
      "Smart Trader"
    ],
    "chains": [
      "ethereum",
      "solana"
    ],
    "includeStablecoin": true,
    "includeNativeTokens": true,
    "excludeSmFilter": []
  },
  "pagination": {
    "page": 1,
    "recordsPerPage": 100
  }
}
[
  {
    "chain": "text",
    "tokenAddress": "text",
    "symbol": "text",
    "sectors": [
      "text"
    ],
    "volume24hUSD": 1,
    "volume7dUSD": 1,
    "volume30dUSD": 1,
    "nofTraders": "text",
    "tokenAgeDays": "text",
    "marketCap": 1
  }
]

Usage Tips

  • To query smart money activity across all chains, simply use

    "chains": []

  • To query smart money activity across multiple chains, specify the chains in the array

      "chains": [
                "solana",
                "base"
            ],

  • You can also use filters to only query smart money data for tokens of interest by adding these filters:

       "filters": {
            "symbol": [
                "FARTCOIN",
                "USELESS"
            ]
        },
    
    or 
    
        "filters": {
            "tokenAddress": [
                "9BB6NFEcjBCtnNLFko2FqVQBq8HHM13kCyYcdQbgpump"
            ]
        },

  • You can also filter responses based on token age or sectors

       "filters": {
            "tokenAgeDays": {
                "from": 0,
                "to": 30
            },
            "sectors": [
                "GameFi"
            ]
        },

Last updated

Was this helpful?