Get Single Order
GET
https://api.sfox.com/v1/orders/:order_id
Retrieve the details of a single order.
Path Parameters
Parameter
Type
Description
order_id
required
string
order_id
is either the order ID generated by sFOX upon order creation (id
) or the client-assigned client_order_id
.
Order Statuses
Status
Status Code
Description
Started
100
The order is open and active
Filled quantity may be >= 0
Filled quantity is < the order quantity
Cancel Pending
90
The order is in the process of being canceled but cancelation has not been completed
The order may still receive fills
Canceled
10
The order was successfully canceled
Order may have been partially filled prior to cancelation
Done
300
The order was completed and is no longer active
Filled quantity = order quantity
The order will not receive new fills
Responses
Example Requests
curl -H 'Authorization: Bearer <API_TOKEN>' \
'https://api.sfox.com/v1/orders/<ORDER_ID>'
Last updated