Skip to main content
GET
Get All Trades

Authentication

This endpoint requires JWT authentication via the Authorization: Bearer <token> header.

Path Parameters

string
required
The token mint address to retrieve trades for

Query Parameters

number
required
Maximum number of trades to return per request. Use this for pagination.
number
required
Number of trades to skip before starting to return results. Use with limit for pagination.
number
required
Minimum trade size to filter results. Only trades equal to or larger than this value will be returned.

Response

array
Array of trade objects for the specified token

Example Request

Replace <your_token> with your actual JWT token and use a valid token mint address.

Pagination

To paginate through results:
  1. Start with offset=0 and your desired limit
  2. For the next page, increment offset by the limit value
  3. Continue until fewer results than limit are returned
Example pagination sequence:
  • Page 1: offset=0&limit=50
  • Page 2: offset=50&limit=50
  • Page 3: offset=100&limit=50

Get Trade Count

Get the total number of trades for a specific token.

Path Parameters

string
required
The token mint address to count trades for

Query Parameters

number
required
Minimum trade size to filter the count. Only trades equal to or larger than this value will be counted.

Response

number
Total number of trades matching the criteria

Example Request