Orders
List orders
List orders for a given account for the current trading day, filtered on the given query parameters.
get/accounts/{account_id}/orders
Path parameters
account_idstring required
Account ID for the account.
Example:100000
Query parameters
frominteger
Milliseconds since epoch.
tointeger
Milliseconds since epoch.
page_sizeinteger
Number of orders to return per page.
page_tokenstring
Cursor for the page to return.
Response
Successful response
Example response
{
"data": [
{
"order_id": "12390213",
"reference_id": "my-order-id-123",
"version": 1,
"account_id": "100000",
"account_number": "ACC0001",
"symbol": "AAPL",
"quantity": "100",
"price": "123.99",
"stop_price": "123.99",
"filled_quantity": "100",
"strategy": {
"min_percent": 1,
"max_percent": 35
},
"running_position": "100"
}
]
}