DEX Trades

tgm/dex-trades

post

This model returns simple DEX trades for a specified token.

Questions

  1. Which addresses have sold the specified token recently? 2. Have Smart Money addresses bought the specified token? 3. Has there been a DEX trade worth more than 1 million USD?

Authorizations
Body
Responses
200

Successful response

application/json
post
POST /api/beta/tgm/dex-trades HTTP/1.1
Host: api.nansen.ai
apiKey: YOUR_API_KEY
Content-Type: application/json
Accept: */*
Content-Length: 210

{
  "parameters": {
    "chain": "solana",
    "tokenAddress": "2zMMhcVQEXDtdE6vsFS7S7D5oUodfJHE8vd1gnBouauv",
    "onlySmartMoney": false,
    "date": {
      "from": "2025-07-07",
      "to": "2025-07-14"
    }
  },
  "pagination": {
    "page": 1,
    "recordsPerPage": 100
  }
}
[
  {
    "blockTimestamp": "text",
    "transactionHash": "text",
    "traderAddressHex": "text",
    "traderName": "text",
    "action": "text",
    "tokenName": "text",
    "tokenAmount": 1,
    "tradedTokenAddressHex": "text",
    "tradedTokenName": "text",
    "tradedTokenAmount": "text",
    "estimatedSwapPriceUsd": "text",
    "estimatedValueUsd": "text"
  }
]

Last updated

Was this helpful?