Get Orders
List orders for an account with optional filtering
Path parameters
Account identifier
Query parameters
The number of items to return per page. Only used when page_token is not provided.
Base64URL-encoded pagination token
Token for retrieving the next or previous page of results. Contains encoded pagination state; when provided, page_size is ignored.
Comma-separated order IDs to filter by. When provided, only orders whose order ID is in this set are returned.
Comma-separated order statuses to filter by
Filter by symbol
Comma-separated instrument IDs (UUID) or symbols (equity tickers or OSI option symbols).
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.
The start date and time for the query range, inclusive (ISO 8601 format)
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"
}
]
}