v22

latestOpenAPI 3.0.0raw.githubusercontent.com2026-03-03327794.1 KB
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

next_page_tokenstring

Cursor for the next page of results.

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"
    }
  ]
}