POST
/
api
/
orders
Create order
curl --request POST \
  --url http://localhost:14400/api/orders \
  --header 'Authorization: Bearer <token>' \
  --header 'Content-Type: application/json' \
  --data '{
  "symbol": "<string>",
  "side": "buy",
  "type": "market",
  "quantity": 123,
  "price": 123
}'
{
  "orderId": "<string>",
  "status": "<string>"
}

Authorizations

Authorization
string
header
required

Dynamic authentication JWT token

Body

application/json

Response

200 - application/json

Order created successfully

The response is of type object.