Skip to main content
GET
List account orders in a time range

Authorizations

Authorization
string
header
required

Bearer token used for protected REST API requests.

Path Parameters

accountID
string
required

Trading account identifier. The authenticated user must be allowed to access this account.

start_time
integer<int64>
required

Start of the time range as Unix timestamp in milliseconds.

end_time
integer<int64>
required

End of the time range as Unix timestamp in milliseconds.

Response

Order records matching the account and time range.

orderID
string

System-generated order identifier used for internal tracking and cancel/modify operations.

refOrderID
string

Client-provided reference order id.

externalOrderID
string

Order id returned by the external broker or exchange gateway.

externalSecondOrderID
string

Secondary broker order id when available.

accountID
string

Trading account used by the order.

symbol
string

Order symbol.

orderSide
enum<string>

B for buy, S for sell.

Available options:
B,
S
orderStatus
string

Order status. Broker numeric values may include 0 New, 1 Partially Filled, 2 Filled, 4 Cancelled, 7 Stopped, 8 Rejected; special order values may be PENDING, COMPLETE, CANCELLED, MODIFIED.

orderType
string

Order type such as LO, MTL, ATO, or ATC.

orderEntryPrice
number

Original submitted price.

orderEntryQty
integer

Original submitted quantity.

orderCurrentPrice
number

Current active price after broker updates or modifications.

orderCurrentQty
integer

Current active quantity after fills/cancellations.

filledQty
number

Filled quantity.

avgFillPrice
number

Average fill price.

cancelledQty
number

Cancelled quantity.

orderText
string

Broker or backend explanatory text.

unixUTCTimeMs
number

Last order event time in Unix milliseconds UTC.

createunixUTCTimeMs
number

Order creation time in Unix milliseconds UTC.

persisState
string

Serialized persistence state used by algo/special orders.

algoID
string

Algo identifier when order originated from an algo.

positionID
string

Position identifier associated with the order.

toHedge
boolean

Whether this order is marked for hedging.

parentOrderId
string

Parent stop or bracket order id for child orders.

partnerCode
string

Partner code for partner-originated orders.

partnerBrokerUsed
string

Underlying partner broker account used for partner orders.