v1

latestOpenAPI 3.1.02026-07-2410781551.8 KB
Alltime & History

All Time Trades (Single)

Get all time trades or follow duration transactions for one token.

get/defi/v3/all-time/trades/single

Query parameters

time_frame'1m' | '5m' | '30m' | '1h' | '2h' | '4h' | '8h' | '24h' | '3d' | '7d' | '14d' | '30d' | '90d' | '180d' | '1y' | 'alltime' required

Time interval (Example: '24h')

addressstring required

The address of the token contract.

ui_amount_mode'raw' | 'scaled' | 'both'

Indicate whether to use the scaled amount for scaled ui amount tokens. Only support solana

Headers

x-chain'solana' | 'ethereum' | 'arbitrum' | 'avalanche' | 'bsc' | 'optimism' | 'polygon' | 'base' | 'zksync' | 'monad' | 'hyperevm' | 'aptos' | 'fogo' | 'mantle' | 'megaeth' | 'robinhood' | 'sui'

A chain name listed in supported networks.

Response

All time trading statistics by token address

successboolean

Example response

{
  "data": [
    {
      "address": "So11111111111111111111111111111111111111112",
      "total_volume": 158766463.26959822,
      "total_volume_usd": 20188521260.405678,
      "volume_buy_usd": 20188521260.405678,
      "volume_sell_usd": 20188521260.405678,
      "volume_buy": 78227859.16098201,
      "volume_sell": 80538604.1086162,
      "total_trade": 258522892,
      "buy": 87829497,
      "sell": 170693395
    }
  ],
  "success": true
}