---
title: "Get Account Orders"
method: GET
path: "/v1/accounts/{account_id}/orders"
tags: ["Accounts"]
---

# Get Account Orders

`GET /v1/accounts/{account_id}/orders`

Get current market session orders for an account.

## Path parameters

- `account_id` string, required

## Query parameters

- `status` string
- `limit` integer
- `page` integer
- `includeTags` boolean

## Headers

- `Accept` 'application/json', required

## Response `200`

Account orders information

- OrdersResponse
  - `orders` object
    - `order` Order[] — List of orders
      - `id` integer — The order ID
      - `type` 'market' | 'limit' | 'stop' | 'stop_limit' | 'debit' | 'credit' | 'even' — The order type
      - `symbol` string — The security symbol
      - `side` 'buy' | 'buy_to_cover' | 'sell' | 'sell_short' | 'buy_to_open' | 'buy_to_close' | 'sell_to_open' | 'sell_to_close' — The side of the order
      - `quantity` number, float — The order quantity
      - `status` 'pending' | 'open' | 'partially_filled' | 'filled' | 'expired' | 'canceled' | 'rejected' | 'pending_cancel' — The order status
      - `duration` 'day' | 'gtc' | 'pre' | 'post' — The order duration
      - `avg_fill_price` number, float — The average fill price
      - `exec_quantity` number, float — The executed quantity
      - `create_date` string, date-time — The date the order was created
      - `transaction_date` string, date-time — The date of the last transaction
      - `class` 'equity' | 'option' | 'multileg' | 'combo' — The security class
    - `page` integer — Current page number
    - `total_pages` integer — Total number of pages
    - `total_orders` integer — Total number of orders

## Other responses

- `401` — Authentication required or invalid credentials
- `403` — Access denied to the requested resource
- `404` — The requested resource was not found

---

[API](https://skmtc.net/tradier/apis/tradier-brokerage-api.md) · [All operations](https://skmtc.net/tradier/apis/tradier-brokerage-api/llms.txt) · [OpenAPI document](https://skmtc-service-staging.skmtc.workers.dev/v1/apis/tradier/tradier-brokerage-api/revisions/3cda47abe673/schema)
