Get trade history
This endpoint allows users to get trade history
GET /api/v1/trades/historyQuery Parameters
Field
Type
Need
Description
Example
/api/v1/positions/history?account=42trU9A5...&start_time=1625097600000&end_time=1759215599188Response
{
"success": true,
"data": [
{
"history_id": 19329801,
"order_id": 315293920,
"client_order_id": "acf...",
"symbol": "LDO",
"amount": "0.1",
"price": "1.1904",
"entry_price": "1.176247",
"fee": "0",
"pnl": "-0.001415",
"event_type": "fulfill_maker",
"side": "close_short",
"created_at": 1759215599188,
"cause": "normal"
},
...
],
"next_cursor": "11111Z5RK",
"has_more": true
}Field
Type
Description
Field
Type
Description
Code Example (Python)
Last updated