Skip to main content
POST
/
v1
/
parent_orders
Submit Order
curl --request POST \
  --url https://api.sequencemkts.com/v1/parent_orders \
  --header 'Authorization: Bearer <token>' \
  --header 'Content-Type: application/json' \
  --data '
{
  "client_request_id": "<string>",
  "client_order_id": "<string>",
  "side": "BUY",
  "symbol": "<string>",
  "qty_1e8": 123,
  "client_id": "<string>",
  "constraints": {
    "max_price_1e9": 95000000000000,
    "urgency": "UNSPECIFIED",
    "horizon_ms": 123,
    "participation_limit_bps": 123
  }
}
'
{
  "parent_id": "<string>",
  "status": "<string>"
}

Authorizations

Authorization
string
header
required

API key as bearer token (e.g., sk_live_abc123)

Body

application/json
client_request_id
string
required

Idempotency key

client_order_id
string
required
side
enum<string>
required
Available options:
BUY,
SELL
symbol
string
required
qty_1e8
integer
required
client_id
string

Defaults to authenticated client

constraints
object

Response

Order accepted

parent_id
string
status
string