Skip to main content
POST
https://api-gw.verolabs.co/api/v1
/
orders
/
new
/
{refOrderID}
/
{accountID}
/
{symbol}
/
{orderSide}
/
{price}
/
{qty}
/
{orderType}
Place a new order
curl --request POST \
  --url https://api-gw.verolabs.co/api/v1/orders/new/{refOrderID}/{accountID}/{symbol}/{orderSide}/{price}/{qty}/{orderType} \
  --header 'Authorization: Bearer <token>'
{
  "status": 123,
  "data": "<unknown>",
  "message": "<string>"
}

Documentation Index

Fetch the complete documentation index at: https://docs.oms.verolabs.co/llms.txt

Use this file to discover all available pages before exploring further.

Authorizations

Authorization
string
header
required

JWT returned by Ory /sessions/whoami?tokenize_as=jwt_template_1 and stored by ApiClient.

Path Parameters

refOrderID
string
required
accountID
string
required
symbol
string
required
Example:

"VN30F1M"

orderSide
enum<string>
required

B = Buy, S = Sell.

Available options:
B,
S
price
number<double>
required
qty
integer
required
Required range: x >= 1
orderType
enum<string>
required
Available options:
LO,
MO,
ATO,
ATC,
MTL

Response

Order placement result.

status
integer
data
any
message
string