Create Order
POST
https://api.onetrading.com/fast/v1/account/orders
Create a New Order
TRADE
scope. You can generate an API key through the One Trading UI.Time in Force Options
time_in_force
options:time_in_force
is specified, GOOD_TILL_CANCELLED is assumed.Order Size and Precision
/instruments
endpoint.Client ID for Order Tracking
client_id
to track orders without waiting for the assigned order_id
.client_id
. If multiple orders share the same client_id
, only the newest order can be canceled via client_id
; older orders will require the specific order_id
or use of the "Cancel All Orders" endpoint.Request Request Example
Shell
JavaScript
Java
Swift
curl --location --request POST 'https://api.onetrading.com/fast/v1/account/orders' \
--header 'Content-Type: application/json' \
--data-raw ''
Response Response Example
200 - Success
{
"order_id": "dc3239e2-e808-433a-8875-12ab7c537ce4",
"client_id": "58503f2b-ca87-4816-9338-93c443e6fdde",
"account_id": "726288e6-a463-4f88-9068-024ae8f97a34",
"instrument_code": "SOL_EUR",
"time": "2024-11-14T14:36:36.286Z",
"side": "SELL",
"price": "150",
"amount": "1",
"type": "LIMIT",
"time_in_force": "GOOD_TILL_CANCELLED",
"status": "OPEN"
}
Request
Body Params application/json