Trading
Get Active Orders
Get currently active (in-flight) orders from exchange connectors.
Fetches real-time order data directly from the connectors' in-flight order tracking. This shows orders that are currently open, pending, or partially filled on the exchanges. Unlike /orders/search which queries historical data, this endpoint provides live order state.
Active orders include those in states: PENDING_CREATE, OPEN, PARTIALLY_FILLED, PENDING_CANCEL. Orders that are fully filled, cancelled, or failed will not appear here (use /orders/search instead).
The response uses cursor-based pagination. Orders are sorted by client_order_id for consistency.
post/trading/orders/active
Request body
Response
Successful Response
Example response
{
"data": [],
"pagination": {
"has_more": true,
"limit": 100,
"next_cursor": "2024-01-10T12:00:00",
"total_count": 500
}
}