Skip to main content
GET
/
order-status
cURL
curl --request GET \
  --url https://gateway.architect.exchange/orders/order-status \
  --header 'Authorization: Bearer <token>'
{
  "status": {
    "order_id": "<string>",
    "state": "PENDING",
    "symbol": "<string>",
    "clord_id": 1,
    "filled_quantity": 123,
    "remaining_quantity": 123
  }
}

Authorizations

Authorization
string
header
required

User session token

Query Parameters

order_id
null | string

Order ID to query; e.g. "ORD-1234567890". Mutually exclusive with client_order_id - exactly one must be provided. Strong type for Order IDs to prevent mixing with other string values

Order IDs are ULIDs with a prefix:

  • Regular orders: O-
  • Liquidation orders: L-
client_order_id
integer<int64> | null

Client order ID to query; 64 bit integer. Mutually exclusive with order_id - exactly one must be provided.

Required range: x >= 0

Response

Status of requested order

status
object
required