Skip to main content
GET
/
v1
/
parent_orders
/
{parent_id}
Get Order
curl --request GET \
  --url https://api.sequencemkts.com/v1/parent_orders/{parent_id} \
  --header 'Authorization: Bearer <token>'
{
  "parent_id": "P-550e8400-e29b-41d4-a716-446655440000",
  "client_id": "acme-corp",
  "client_order_id": "my-order-1",
  "side": "BUY",
  "symbol": "BTC-USD",
  "qty_1e8": 100000000,
  "filled_qty_1e8": 50000000,
  "status": "ACCEPTED",
  "constraints": {
    "max_price_1e9": 95000000000000,
    "urgency": "UNSPECIFIED",
    "horizon_ms": 123,
    "participation_limit_bps": 123
  },
  "created_unix_ns": 123,
  "updated_unix_ns": 123
}

Authorizations

Authorization
string
header
required

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

Path Parameters

parent_id
string
required

Response

Order details

parent_id
string
Example:

"P-550e8400-e29b-41d4-a716-446655440000"

client_id
string
Example:

"acme-corp"

client_order_id
string
Example:

"my-order-1"

side
enum<string>
Available options:
BUY,
SELL
symbol
string
Example:

"BTC-USD"

qty_1e8
integer

Quantity in 1e8 units (1 BTC = 100000000)

Example:

100000000

filled_qty_1e8
integer
Example:

50000000

status
enum<string>
Available options:
ACCEPTED,
RUNNING,
PAUSED,
COMPLETED,
CANCELLED,
REJECTED,
FAILED
constraints
object
created_unix_ns
integer<int64>
updated_unix_ns
integer<int64>