v57

latestOpenAPI 3.1.0Proprietaryraw.githubusercontent.com2026-07-2161198428.4 KB
Orders

Get Orders

List orders for an account with optional filtering

get/v1/accounts/{account_id}/orders

Path parameters

account_idinteger required

Account identifier

Query parameters

page_sizeinteger

The number of items to return per page. Only used when page_token is not provided.

page_tokenstring byte

Base64URL-encoded pagination token

Token for retrieving the next or previous page of results. Contains encoded pagination state; when provided, page_size is ignored.

order_idsstring[]

Comma-separated order IDs to filter by. When provided, only orders whose order ID is in this set are returned.

statusstring[]

Comma-separated order statuses to filter by

symbolstring

Filter by symbol

Comma-separated instrument IDs (UUID) or symbols (equity tickers or OSI option symbols).

instrument_type'COMMON_STOCK' | 'INDEX' | 'OPTION' | 'CASH'

Security type

Instrument type filter (e.g., COMMON_STOCK, OPTION)

Comma-separated instrument IDs (UUID) or symbols (equity tickers or OSI option symbols). Matches options orders whose resolved underlier is any of the given instruments.

fromstring date-time

The start date and time for the query range, inclusive (ISO 8601 format)

tostring date-time

The end date and time for the query range, inclusive (ISO 8601 format)

Response

List of orders

Example response

{
  "error": {
    "code": 400,
    "message": "Order quantity must be greater than zero"
  },
  "data": [
    {
      "account_id": 19816,
      "client_order_id": "my-ref-id-20251001-001",
      "created_at": "2025-10-31T13:30:00.000000000Z",
      "extended_hours": false,
      "filled_quantity": "0",
      "id": "0195f6c7-4f64-7e3c-8b0a-1d8e4f5e6a7b",
      "instrument_id": "d4d5d6d7-e4e5-f4f5-a4a5-a6a7a8a9aaab",
      "instrument_type": "COMMON_STOCK",
      "leaves_quantity": "1",
      "limit_price": "48.00",
      "order_type": "LIMIT",
      "quantity": "1",
      "side": "BUY",
      "status": "PENDING_NEW",
      "stop_price": null,
      "symbol": "TSLA",
      "time_in_force": "DAY",
      "updated_at": "2025-10-31T13:30:00.000000000Z",
      "venue": "XNAS"
    }
  ]
}