---
title: "Place Order"
method: POST
path: "/v1/accounts/{account_id}/orders"
tags: ["Trading"]
---

# Place Order

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

Place a trading order. Supports equity, option, multileg, combo, OTO, OCO, and OTOCO order types.

## Path parameters

- `account_id` string, required

## Headers

- `Content-Type` 'application/x-www-form-urlencoded', required

## Response `200`

Order response information

- object
  - `order` DetailedOrder
    - `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
    - `last_fill_price` number, float — The price of the last fill
    - `last_fill_quantity` number, float — The quantity of the last fill
    - `remaining_quantity` number, float — The quantity remaining to be filled

## Other responses

- `400` — Invalid request parameters or body
- `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)
