This endpoint place a new order and send to the exchange to be matched.

Type description: buy-limit
When "Order Price">= "Market Minimum Selling Price", the system will refuse to accept the order after the order is submitted;
When the "order price" < "market minimum offer price", after the submission is successful, the order will be accepted by the system.sell-limit
When the "order price" <= "market maximum purchase price", the system will refuse to accept the order after the order is submitted;
When the "order price" > "market maximum purchase price", after the submission is successful, the order will be accepted by the system.

/* POST /v1/order/orders/place */ { "account-id": "100009", "amount": "10.1", "price": "100.1", "source": "api", "symbol": "ethusdt", "type": "buy-limit" }
/* POST /v1/order/orders/place */ { "status": "ok", "data": "59378" }
Body Params
string
required

The account id used for this trade

string
required

The amount to buy (quote currency) or to sell (base currency)

string
required

The trading symbol to trade
range: All trading symbol supported, e.g. btcusdt, bccbtc

string
required

The order type
range: [buy-market, sell-market, buy-limit, sell-limit]

string

The limit price of limit order, only needed for limit order

string
Defaults to api

'api' for spot trade and 'margin-api' for margin trade

Response

Language
Choose an example:
application/json