Get open orders
This endpoint allows users to get open orders on their account.
GET /api/v1/ordersQuery Parameters
Field
Type
Need
Description
Example
/api/v1/orders?account=42trU9A5...Response
{
"success": true,
"data": [
{
"order_id": 315979358,
"client_order_id": "add9a4b5-c7f7-4124-b57f-86982d86d479",
"symbol": "ASTER",
"side": "ask",
"price": "1.836",
"initial_amount": "85.33",
"filled_amount": "0",
"cancelled_amount": "0",
"stop_price": null,
"order_type": "limit",
"stop_parent_order_id": null,
"reduce_only": false,
"created_at": 1759224706737,
"updated_at": 1759224706737
}
],
"error": null,
"code": null,
"last_order_id": 1557370337
}Field
Type
Description
Code Example (Python)
Last updated