Skip to main content
POST
/
preview-aggressive-limit-order
cURL
curl --request POST \
  --url https://gateway.architect.exchange/api/preview-aggressive-limit-order \
  --header 'Authorization: Bearer <token>' \
  --header 'Content-Type: application/json' \
  --data '
{
  "quantity": 123,
  "side": "B",
  "symbol": "<string>"
}
'
{
  "filled_quantity": 123,
  "remaining_quantity": 123,
  "limit_price": "<string>",
  "vwap": "<string>"
}

Authorizations

Authorization
string
header
required

User session token

Body

application/json
quantity
integer<int64>
required
side
enum<string>
required
Available options:
B,
S
symbol
string
required

Response

Aggressive limit order preview

filled_quantity
integer<int64>
required
remaining_quantity
integer<int64>
required
limit_price
string | null
vwap
string | null