Get order history by ID
This endpoint allows users to get order history by id.
GET /api/v1/orders/history_by_idQuery Parameters
Field
Type
Need
Description
Example
/api/v1/orders/history_by_id?order_id=13753364Response
{
"success": true,
"data": [
{
"history_id": 641452639,
"order_id": 315992721,
"client_order_id": "ade1aa6...",
"symbol": "XPL",
"side": "ask",
"price": "1.0865",
"initial_amount": "984",
"filled_amount": "0",
"cancelled_amount": "984",
"event_type": "cancel",
"order_type": "limit",
"order_status": "cancelled",
"stop_price": null,
"stop_parent_order_id": null,
"reduce_only": false,
"created_at": 1759224895038
},
{
"history_id": 641452513,
"order_id": 315992721,
"client_order_id": "ade1aa6...",
"symbol": "XPL",
"side": "ask",
"price": "1.0865",
"initial_amount": "984",
"filled_amount": "0",
"cancelled_amount": "0",
"event_type": "make",
"order_type": "limit",
"order_status": "open",
"stop_price": null,
"stop_parent_order_id": null,
"reduce_only": false,
"created_at": 1759224893638
}
],
"error": null,
"code": null
}Field
Type
Description
Code Example (Python)
Last updated