cURL
curl --request POST \ --url https://openapi.odyssey.trade/sapi/v1/order \ --header 'Content-Type: application/json' \ --data '{ "symbol": "<string>", "volume": 123, "side": "BUY", "type": "LIMIT", "price": 123, "newClientOrderId": "<string>" }'
{ "orderId": "<string>", "clientOrderId": "<string>", "symbol": "<string>", "transactTime": 123, "price": "<string>", "origQty": "<string>", "executedQty": "<string>", "avgPrice": "<string>", "type": "LIMIT", "side": "BUY", "status": "NEW" }
Create a new order.
Source: https://exchangeopenapi.gitbook.io/pri-openapi/openapi-doc/spot-trading-api#create-new-order
Successful Response
An object that contains information about the order.