Docs/Token data/Trades

Trades

GET/v1/token/{mint}/tradesPublic

The trade tape, newest first, keyset-paginated. Pass nextCursor as ?cursor= to page back.

Path parameters

FieldTypeDescription
mintrequiredstringToken mint address (base58).

Query parameters

FieldTypeDescription
limitoptionalnumberTrades per page (≤200). default 50
cursoroptionalstringThe nextCursor from the previous page.
networkoptionalmainnet | devnetNetwork to read. Devnet returns an empty payload (with a note) until its ingestor lands. default mainnet

Response fields

FieldTypeDescription
trades[].sidestringbuy or sell.
trades[].signerstringThe wallet (base58).
trades[].dexstringVenue: raydium / orca / meteora.
trades[].priceUsdnumberExecution price.
trades[].volumeUsdnumberTrade size in USD.
nextCursorstring | nullPass as ?cursor= for the next page; null = end.