Check equity order impact
Simulates an order and its impact on the account. This endpoint does not place the order with the brokerage. If successful, it returns a Trade object and the ID of the object can be used to place the order with the brokerage using the place checked order endpoint. Please note that the Trade object returned expires after 5 minutes. Any order placed using an expired Trade will be rejected.
Query parameters
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.
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
Example request
{
"account_id": "917c8734-8470-4a3e-a18f-57c3f2ee6631",
"universal_symbol_id": "2bcd7cc3-e922-4976-bce1-9858296801c3",
"order_type": "Market",
"time_in_force": "Day",
"price": 31.33,
"stop": 31.33,
"units": 10.5
}Response
OK
Example response
{
"trade": {
"id": "139e307a-82f7-4402-b39e-4da7baa87758",
"account": "917c8734-8470-4a3e-a18f-57c3f2ee6631",
"order_type": "Market",
"time_in_force": "Day",
"symbol": {
"universal_symbol_id": "2bcd7cc3-e922-4976-bce1-9858296801c3",
"currency": {
"id": "87b24961-b51e-4db8-9226-f198f6518a89",
"code": "USD",
"name": "US Dollar"
},
"local_id": "1048101",
"description": "Metaverse Global ETF",
"symbol": "MVGP.U.TO",
"brokerage_symbol_id": "2bcd7cc3-e922-4976-bce1-9858296801c3"
},
"units": 10.5,
"price": 31.33
},
"trade_impacts": [
{
"account": "917c8734-8470-4a3e-a18f-57c3f2ee6631",
"currency": "87b24961-b51e-4db8-9226-f198f6518a89",
"remaining_cash": 1.11,
"estimated_commission": 3.26,
"forex_fees": 5.26
}
],
"combined_remaining_balance": {
"account": {
"id": "917c8734-8470-4a3e-a18f-57c3f2ee6631",
"name": "Robinhood Individual",
"number": "Q6542138443",
"institution_account_id": "54953432",
"sync_status": {
"transactions": {
"initial_sync_completed": true,
"last_successful_sync": "2022-01-24",
"first_transaction_date": "2022-01-24"
},
"holdings": {
"initial_sync_completed": true,
"last_successful_sync": "2024-06-28 18:42:46.561408+00:00",
"holdings_unavailable": true
}
}
},
"currency": {
"id": "87b24961-b51e-4db8-9226-f198f6518a89",
"code": "USD",
"name": "US Dollar"
},
"cash": 1.11
}
}