pro_get_trades
Retrieve executed trade history from Bit2Me Pro Trading, with optional filters by pair, side, date range, and pagination. Review past trades, including price, amount, fees, and side.
Instructions
Gets the user's trade history in Pro Trading. Returns executed trades with price, amount, side (buy/sell), fees, and date. Optional filters: trading pair, side, order type, date range, limit (max 50), offset, and sort order. Use this to review past trading activity. Response is a paginated list with metadata. [PRIVATE]
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| pair | No | Filter by trading pair (e.g., BTC-USD) | |
| side | No | Filter by order direction: buy (purchase) or sell (dispose) | |
| order_type | No | Filter by order type (limit, stop-limit, market) | |
| limit | No | Maximum number of trades to fetch (max 50, default 50) | |
| offset | No | Number of records to skip for pagination | |
| sort | No | Sort order by date (ASC, DESC) | |
| start_date | No | Filter trades from this date (ISO 8601 format) | |
| end_date | No | Filter trades until this date (ISO 8601 format) | |
| jwt | No | Optional session token for authentication. API keys are recommended for most use cases. |