Trades
Get All Trades
Retrieve all trades for a specific token with pagination and filtering options
GET
Get All Trades
Authentication
This endpoint requires JWT authentication via theAuthorization: Bearer <token> header.
Path Parameters
The token mint address to retrieve trades for
Query Parameters
Maximum number of trades to return per request. Use this for pagination.
Number of trades to skip before starting to return results. Use with
limit for pagination.Minimum trade size to filter results. Only trades equal to or larger than this value will be returned.
Response
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:- Start with
offset=0and your desiredlimit - For the next page, increment
offsetby thelimitvalue - Continue until fewer results than
limitare returned
- 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
The token mint address to count trades for
Query Parameters
Minimum trade size to filter the count. Only trades equal to or larger than this value will be counted.
Response
Total number of trades matching the criteria
Example Request
Get All Trades