Place Order
Submits a new buy or sell order to the exchange for immediate or conditional execution, supporting Market, Limit, and Stop Market order types.
Request Body Example
{
"symbol": "BTCUSDT.PERP",
"side": "BUY",
"type": "MARKET",
"quantity": "1.0"
}{
"symbol": "BTCUSDT.PERP",
"side": "SELL",
"type": "LIMIT",
"price": "90000",
"quantity": "0.1"
}Response Body
Required scopes
This endpoint requires the following scopes:
Authorizations
api-keystringRequired
For third party retail API users
Body
symbolstringRequiredExample:
Trading symbol
BTCUSDT.PERPPattern: ^[A-Z0-9]+(\.[A-Z0-9]+)?$sidestring · enumRequiredPossible values:
Order side
typestring · enumRequiredPossible values:
Order type
reduceOnlybooleanOptionalDefault:
falsepricestring · nullableOptionalExample:
the limit or trigger price for execution.
###.###amountstring · nullableOptionalExample:
order size designated in base asset units (e.g., BTC amount)
###.###quantitystring · nullableOptionalExample:
specifies the order size denominated in the base asset units (e.g., BTC for a BTCUSDT pair).
###.###maxSlippagePricestring · nullableOptionalExample:
prevents the order from being executed at a price worse than this specified limit.
###.###priceMatchStrategystring · enum · nullableOptionalPossible values:
Automatically sets the limit order price to the current Best Bid or Offer (BBO) when selected.
Responses
200
OK
application/json
400
Bad Request
application/json
401
Unauthorized
application/json
post
/api/v1/trade/orderLast updated
