Order Place(TRADE)
Interface Description
Spot block match Place order, The order is valid for 30 minutes and will automatically expire if not executed.
HTTP Request
POST /sapi/v1/block-match/order/place
Request Weight (IP)
1
Request fields:
Name | Type | Mandatory | Description |
---|---|---|---|
symbol | String | YES | symbol, For example:BTC/USDT |
side | Enum | YES | Buy/Sell |
price | Decimal | YES | Price |
amount | Decimal | YES | Amount |
recvWindow | LONG | NO | |
timestamp | LONG | YES |
Example response:
{
"orderId": 1345055237913600000,// Order ID
"settlementKey": "7fc713a30e1f4835ad5d3aaea150f32b" // Settlement Key, The recipient needs to use this key to find the corresponding order.
}