logo
Trading

Place order

post
https://api.snaptrade.com/api/v1/trade/place

Places a brokerage order in the specified account. The order could be rejected by the brokerage if it is invalid or if the account does not have sufficient funds.

This endpoint does not compute the impact to the account balance from the order and any potential commissions before submitting the order to the brokerage. If that is desired, you can use the check order impact endpoint.

It's recommended to trigger a manual refresh of the account after placing an order to ensure the account is up to date. You can use the manual refresh endpoint for this.

Execute an API Request

Query
userIdstringrequired

SnapTrade User ID. This is chosen by the API partner and can be any string that is a) unique to the user, and b) immutable for the user. It is recommended to NOT use email addresses for this property because they are usually not immutable.

userSecretstringrequired

SnapTrade User Secret. This is a randomly generated string and should be stored securely. If compromised, please rotate it via the rotate user secret endpoint.

Request Body
account_idstring (format: uuid)required

Unique identifier for the connected brokerage account. This is the UUID used to reference the account in SnapTrade.

actionstringrequired

The action describes the intent or side of a trade. This is either BUY or SELL

universal_symbol_idstring (format: uuid)required

Unique identifier for the symbol within SnapTrade. This is the ID used to reference the symbol in SnapTrade API calls.

order_typestringrequired

The type of order to place.

  • For Limit and StopLimit orders, the price field is required.
  • For Stop and StopLimit orders, the stop field is required.
time_in_forcestringrequired

The Time in Force type for the order. This field indicates how long the order will remain active before it is executed or expires. Here are the supported values:

  • Day - Day. The order is valid only for the trading day on which it is placed.
  • GTC - Good Til Canceled. The order is valid until it is executed or canceled.
  • FOK - Fill Or Kill. The order must be executed in its entirety immediately or be canceled completely.
pricenumber or null

The limit price for Limit and StopLimit orders.

stopnumber or null

The price at which a stop order is triggered for Stop and StopLimit orders.

unitsnumber or null

Number of shares for the order. This can be a decimal for fractional orders. Must be null if notional_value is provided.

notional_value or null

Total notional amount for the order. Must be null if units is provided. Can only work with Market for order_type and Day for time_in_force. This is only available for certain brokerages. Please check the integrations doc for more information.

Authorization
Request
Installation
$
npm install snaptrade-typescript-sdk
1
Loading...

Response fields

object

Describes a single recent order in an account. Each record here represents a single order leg. For multi-leg orders, there will be multiple records.

brokerage_order_idstring

Order ID returned by brokerage. This is the unique identifier for the order in the brokerage system.

statusstring

Indicates the status of an order. SnapTrade does a best effort to map brokerage statuses to statuses in this enum.

symbolstring (format: uuid)

A unique ID for the security within SnapTrade, scoped to the brokerage account that the security belongs to. This is a legacy field and should not be used. Do not rely on this being a stable ID as it can change.

universal_symbolobject

Contains information about the security that the order is for. This field is only present for stock/ETF/crypto/mutual fund orders. For option orders, this field will be null and the option_symbol field will be populated.

option_symbolobject

Contains information about the option contract that the order is for. This field is only present for option orders. For stock/ETF/crypto/mutual fund orders, this field will be null and the universal_symbol field will be populated.

actionstring

The action describes the intent or side of a trade. This is usually BUY or SELL but can include other potential values like the following depending on the specific brokerage.

  • BUY
  • SELL
  • BUY_COVER
  • SELL_SHORT
  • BUY_OPEN
  • BUY_CLOSE
  • SELL_OPEN
  • SELL_CLOSE
total_quantitynumber or null

The total number of shares or contracts of the order. This should be the sum of the filled, canceled, and open quantities. Can be a decimal number for fractional shares.

open_quantitynumber or null

The number of shares or contracts that are still open (waiting for execution). Can be a decimal number for fractional shares.

canceled_quantitynumber or null

The number of shares or contracts that have been canceled. Can be a decimal number for fractional shares.

filled_quantitynumber or null

The number of shares or contracts that have been filled. Can be a decimal number for fractional shares.

execution_pricenumber or null

The price at which the order was executed.

limit_pricenumber or null

The limit price is maximum price one is willing to pay for a buy order or the minimum price one is willing to accept for a sell order. Should only apply to Limit and StopLimit orders.

stop_pricenumber or null

The stop price is the price at which a stop order is triggered. Should only apply to Stop and StopLimit orders.

order_typestring or null

The type of order placed. The most common values are Market, Limit, Stop, and StopLimit. We try our best to map brokerage order types to these values. When mapping fails, we will return the brokerage's order type value.

time_in_forcestring

The Time in Force type for the order. This field indicates how long the order will remain active before it is executed or expires. We try our best to map brokerage time in force values to the following. When mapping fails, we will return the brokerage's time in force value.

  • Day - Day. The order is valid only for the trading day on which it is placed.
  • GTC - Good Til Canceled. The order is valid until it is executed or canceled.
  • FOK - Fill Or Kill. The order must be executed in its entirety immediately or be canceled completely.
  • IOC - Immediate Or Cancel. The order must be executed immediately. Any portion of the order that cannot be filled immediately will be canceled.
  • GTD - Good Til Date. The order is valid until the specified date.
  • MOO - Market On Open. The order is to be executed at the day's opening price.
  • EHP - Extended Hours P.M. The order is to be placed during extended hour trading, after markets close.
time_placedstring (format: date-time)

The time the order was placed. This is the time the order was submitted to the brokerage.

time_updatedstring (format: date-time) or null

The time the order was last updated in the brokerage system. This value is not always available from the brokerage.

time_executedstring (format: date-time) or null

The time the order was executed in the brokerage system. This value is not always available from the brokerage.

expiry_datestring (format: date-time) or null

The time the order expires. This value is not always available from the brokerage.

1
{
2
"brokerage_order_id": "66a033fa-da74-4fcf-b527-feefdec9257e",
3
"status": "NONE",
4
"symbol": "2bcd7cc3-e922-4976-bce1-9858296801c3",
5
"universal_symbol": {
6
"id": "2bcd7cc3-e922-4976-bce1-9858296801c3",
7
"symbol": "VAB.TO",
8
"raw_symbol": "VAB",
9
"description": "VANGUARD CDN AGGREGATE BOND INDEX ETF",
10
"currency": {
11
"id": "87b24961-b51e-4db8-9226-f198f6518a89",
12
"code": "USD",
13
"name": "US Dollar"
14
},
15
"exchange": {
16
"id": "2bcd7cc3-e922-4976-bce1-9858296801c3",
17
"code": "TSX",
18
"mic_code": "XTSE",
19
"name": "Toronto Stock Exchange",
20
"timezone": "America/New_York",
21
"start_time": "09:30:00",
22
"close_time": "16:00:00",
23
"suffix": ".TO"
24
},
25
"type": {
26
"id": "2bcd7cc3-e922-4976-bce1-9858296801c3",
27
"code": "cs",
28
"description": "Common Stock",
29
"is_supported": true
30
},
31
"currencies": [
32
{
33
"id": "87b24961-b51e-4db8-9226-f198f6518a89",
34
"code": "USD",
35
"name": "US Dollar"
36
}
37
],
38
"figi_code": "BBG000B9XRY4",
39
"figi_instrument": {
40
"figi_code": "BBG000B9Y5X2",
41
"figi_share_class": "BBG001S5N8V8"
42
}
43
},
44
"option_symbol": {
45
"id": "2bcd7cc3-e922-4976-bce1-9858296801c3",
46
"ticker": "SPY 220819P00200000",
47
"option_type": "CALL",
48
"strike_price": 200,
49
"expiration_date": "2026-12-18",
50
"is_mini_option": false,
51
"underlying_symbol": {
52
"id": "2bcd7cc3-e922-4976-bce1-9858296801c3",
53
"symbol": "SPY",
54
"raw_symbol": "VAB",
55
"description": "SPDR S&P 500 ETF Trust",
56
"currency": {
57
"id": "87b24961-b51e-4db8-9226-f198f6518a89",
58
"code": "USD",
59
"name": "US Dollar"
60
},
61
"exchange": {
62
"id": "2bcd7cc3-e922-4976-bce1-9858296801c3",
63
"code": "ARCX",
64
"mic_code": "ARCA",
65
"name": "NYSE ARCA",
66
"timezone": "America/New_York",
67
"start_time": "09:30:00",
68
"close_time": "16:00:00",
69
"suffix": "None",
70
"allows_cryptocurrency_symbols": false
71
},
72
"type": {
73
"id": "2bcd7cc3-e922-4976-bce1-9858296801c3",
74
"code": "cs",
75
"description": "Common Stock",
76
"is_supported": true
77
},
78
"currencies": [
79
{
80
"id": "87b24961-b51e-4db8-9226-f198f6518a89",
81
"code": "USD",
82
"name": "US Dollar"
83
}
84
],
85
"figi_code": "BBG000B9XRY4",
86
"figi_instrument": {
87
"figi_code": "BBG000B9Y5X2",
88
"figi_share_class": "BBG001S5N8V8"
89
}
90
}
91
},
92
"action": "string",
93
"total_quantity": 100,
94
"open_quantity": 10,
95
"canceled_quantity": 10,
96
"filled_quantity": 80,
97
"execution_price": 12.34,
98
"limit_price": 12.34,
99
"stop_price": 12.5,
100
"order_type": "Market",
101
"time_in_force": "string",
102
"time_placed": "2024-07-30T22:51:49.746Z",
103
"time_updated": "2024-08-05T00:05:57.409Z",
104
"time_executed": "2024-08-05T00:05:57.409Z",
105
"expiry_date": "2024-08-05T00:05:57.409Z"
106
}