Market Order
These orders are the most basic buy and sell method. Trades are processed at the current market price.
POST /v1/order/market
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 quote currency in buy or base currency in sell |
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"
}
}