Limit Order
Limit orders give more control over the buying and selling prices of their trades. Prior to placing a purchase order, a maximum acceptable purchase price amount must be selected or minimum acceptable sales prices.
POST /v1/order/limit
Headers
Param | Type |
---|---|
apikey | string |
Body
Param | Type | Example | Description |
---|---|---|---|
symbol | string | "KLV-USDT" | Valid trading symbol code. e.g. KLV-USDT |
side | string | "BUY" | BUY or SELL |
quantity | float64 | 5 | Amount of base currency to buy or sell |
price | float64 | 1 | Price per base currency |
Response
Param | Type | Example | Description |
---|---|---|---|
orderId | string | "1989652f-be77-4179-924e-b71c03a4198a" | Unique order id |
Response Example
{
"success": true,
"data": {
"orderID": "de1179b1-897b-44a0-97cd-218dfc8d788f"
}
}