Skip to main content
A single-leg option order buys or sells one option contract — one call or one put. You express it exactly like an equity order, plus a legs array with one entry describing the contract. The presence of that single leg is what tells the platform “this is an option order.”
The rule that drives everything: the number of entries in legs decides the order shape — 0 = equity, 1 = single-leg option (this page), 2–4 = multi-leg option. See Order Flow.

Anatomy of a single-leg option order

The top-level fields describe the order; the leg describes the contract.
side vs. positionEffect. side is whether you’re buying or selling the contract; positionEffect is whether that opens a new position or closes an existing one. A BUY + OPEN opens a long option; a SELL + CLOSE sells one you already hold; a SELL + OPEN writes a new short option.

Example — buy 1 AAPL call to open (limit)

Buy to open 1 AAPL 150Callexpiring20250117,payingupto150 Call** expiring 2025-01-17, paying up to **2.50 per contract.
cURL

Example — sell to close 2 puts (limit)

Request body

Example — market option order

Option orders accept only DAY or GTC time-in-force. IOC and FOK are rejected when a legs array is present.

Response


Watch it fill

Option order updates arrive on the same account topic as account.order events, but with securityType: "OPTION" and the legs echoed back:
account.order — single option filled
For the connect/subscribe handshake see Limit order → Listen for updates; for every field and status, the Account Updates WebSocket reference.

Next steps

Multi-leg option

Combine 2–4 legs into spreads, calendars, and ratio strategies.

Options contract symbols

Look up the strikes and expirations available for an underlying.

Limit order

The pricing and WebSocket mechanics carry over to options.

Place Order API

Interactive reference and full schema.