Trades
GET/v1/token/{mint}/tradesPublic
The trade tape, newest first, keyset-paginated. Pass nextCursor as ?cursor= to page back.
Path parameters
| Field | Type | Description |
|---|
mintrequired | string | Token mint address (base58). |
Query parameters
| Field | Type | Description |
|---|
limitoptional | number | Trades per page (≤200). default 50 |
cursoroptional | string | The nextCursor from the previous page. |
networkoptional | mainnet | devnet | Network to read. Devnet returns an empty payload (with a note) until its ingestor lands. default mainnet |
Response fields
| Field | Type | Description |
|---|
trades[].side | string | buy or sell. |
trades[].signer | string | The wallet (base58). |
trades[].dex | string | Venue: raydium / orca / meteora. |
trades[].priceUsd | number | Execution price. |
trades[].volumeUsd | number | Trade size in USD. |
nextCursor | string | null | Pass as ?cursor= for the next page; null = end. |