Skip to main content
GET
Trades - Token

Legacy trade list for one token.

  • Pass the token address in address.
  • limit supports 1 to 50 items per request, and offset supports up to 50,000.
  • tx_type defaults to swap and can also be used to inspect liquidity actions such as add and remove.
  • ui_amount_mode controls Solana Token-2022 scaled amounts; on non-Solana chains it is normalized to scaled.
  • Use descending sort when you want the most recent trades first.
  • This endpoint consumes 10 CU per request.
  • View the latest on-chain trades for a specific token.
  • Great for tracking whale activity, token movements, or suspicious patterns.
  • Show the latest on-chain trades for a token on a detail page or monitoring dashboard.
  • Inspect swaps and liquidity actions around launches, pumps, or distribution events.
  • Build compact trade tapes without the heavier V3 filtering model.
  • Join recent trades with price and holder data for quick market context.
  • Set x-chain for the target network.
  • Pass the token address in address.
  • Page with offset and limit, keeping limit at 50 or below.
  • Use tx_type to focus on swaps or liquidity actions.
  • Use descending sort when the UI is meant to show the newest activity first.
  • Keep pagination windows small on very active tokens so refreshes stay responsive.
  • Move to Trades - Token (V3) when you need owner, source, pool, or block-range filters.

Authorizations

X-API-KEY
string
header
required

API key for authentication

Headers

x-chain
enum<string>
default:solana

A chain name listed in supported networks.

Available options:
solana,
ethereum,
bsc,
base,
robinhood,
sui,
mantle,
hyperevm,
arbitrum,
avalanche,
optimism,
polygon,
zksync,
monad,
aptos,
fogo,
megaeth

Query Parameters

address
string
required

The address of the token contract.

offset
integer
default:0

Make sure offset + limit <= 10000

Required range: 0 <= x <= 9999
limit
integer
default:50

Number of items per page.

Required range: 1 <= x <= 50
tx_type
enum<string>
default:swap
Available options:
swap,
add,
remove,
all
sort_type
enum<string>
default:desc
required

Specify the sort order.

Available options:
desc,
asc
ui_amount_mode
enum<string>
default:scaled

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

Available options:
raw,
scaled

Response

JSON object containing transactions of a token

success
boolean
required

Whether the request succeeded.

data
object
required