Get order history
This endpoint allows users to get a summarized order history.
GET /api/v1/orders/historyQuery Parameters
Field
Type
Need
Description
Example
/api/v1/orders/history?account=42trU9A5...&limit=100Response
{
"success": true,
"data": [
{
"order_id": 315992721,
"client_order_id": "ade",
"symbol": "XPL",
"side": "ask",
"initial_price": "1.0865",
"average_filled_price": "0",
"amount": "984",
"filled_amount": "0",
"order_status": "open",
"order_type": "limit",
"stop_price": null,
"stop_parent_order_id": null,
"reduce_only": false,
"reason": null,
"created_at": 1759224893638,
"updated_at": 1759224893638
},
...
],
"next_cursor": "1111Hyd74",
"has_more": true
}Field
Type
Description
Code Example (Python)
Last updated