GET
/api/v1/terminal/orders
Permission: SMART_TRADES_READSecurity: SIGNED
Returns a list of currently active trades. This endpoint returns only active (open) trades. For completed trades, use GET /api/v1/terminal/history.
See Trade Entity for full attribute definitions
Trade EntityQuery Parameters
6account_idinteger
Optional filter for trades on a specific exchange account. Retrieve available account IDs via GET /api/v1/accounts.
pairstring
Optional filter for trades on a specific trading pair (e.g., USDT_BTC, BTC_ETH).
order_bystring
default: created_atField to sort results by. Allowed values: pair, created_at.
order_directionstring
default: ascSort direction: asc or desc.
limitinteger
default: 10Number of records to return per page.
offsetinteger
default: 0Number of records to skip for pagination.
Example Request
GETGET /quentrade/trades?account_id=1&limit=5
Example Responses
Returns an array of active trade entities. See Trade Entity for full attribute definitions.
get_active_trades_200.json
200 OK