Orders
Create order
Creates a new order and sends to our internal systems for execution. Note that a successful call to this endpoint does not necessarily mean your order has been accepted, e.g. a downstream venue might reject your order. You should therefore utilize our WebSocket APIs to listen for changes in order lifecycle events.
post/accounts/{account_id}/orders
Path parameters
account_idstring required
Account ID for the account.
Example:100000
Request body
Example request
{
"reference_id": "my-order-id-123",
"quantity": "100",
"price": "123.99",
"stop_price": "123.99",
"symbol": "AAPL",
"strategy": {
"min_percent": 1,
"max_percent": 35
}
}Response
Order received. Indicates the the order was received and is pending further processing.
Example response
{
"order_id": "234usdfa3"
}