Get User Orders
Returns a bare, newest-first array of the effective profile’s orders for one exact market slug. Omitted statuses default to LIVE. Omitted limit is unbounded; this endpoint has no pagination. Partner HMAC tokens with delegated_signing may select an owned sub-account with x-on-behalf-of.
Authentication and delegation
Use HMAC authentication. Looking up your own orders does not require a specific token scope. To read a managed sub-account, sendx-on-behalf-of: <profileId>. The HMAC token must carry delegated_signing, and the target profile must belong to the authenticated partner.
Status filters
Ifstatuses is omitted, the API returns live orders.
Supported status filters are LIVE, MATCHED, CANCELED, and UNMATCHED. Repeat the query parameter to request multiple statuses. Values are case-insensitive.
A taker rejected by self-trade prevention terminates as CANCELED (the placement response carries execution.reason: "STP_TAKER_REJECTED"); filter for it with CANCELED.
Limit and response
When supplied,limit must be an integer from 1 through 200. If omitted, the result is unbounded. The endpoint has no cursor, page, total, or other pagination metadata.
The response is the array itself, not an { "orders": [...] } envelope. Each item contains the internal order and owner/market/token identifiers, order type, status, side, maker and taker amounts, price, original and remaining size, and creation time. Numeric values are serialized as decimal strings. clientOrderId is present only when the order was placed with one.
An existing market with no matching orders returns [].
Errors
Authorizations
Scoped API token with HMAC-SHA256 signing. Requires three headers: lmts-api-key (token ID), lmts-timestamp (ISO-8601), lmts-signature (Base64-encoded HMAC). See Authentication docs for details.
Headers
Managed sub-account profile ID. Requires an HMAC token with delegated_signing and a partner relationship with the target.
1 <= x <= 2147483647326
Path Parameters
Exact market slug. Group slugs and stable-slug aliases are not resolved.
"presidential-election-2024"
Query Parameters
Repeat to filter by one or more statuses. Values are case-insensitive and normalized to uppercase. Defaults to LIVE when omitted.
LIVE, MATCHED, CANCELED, UNMATCHED Maximum newest orders to return. Must be 1–200 when supplied; omission is unbounded.
1 <= x <= 200100
Response
Bare newest-first array; an existing market with no matching orders returns []
Internal order ID.
Profile that owns the order.
Internal market ID serialized as text.
Conditional position token ID.
GTC, FAK, FOK LIVE, MATCHED, CANCELED, UNMATCHED BUY, SELL Maker amount in raw 6-decimal units, serialized as a decimal string.
^[0-9]+(?:\.[0-9]+)?$Taker amount in raw 6-decimal units, serialized as a decimal string.
^[0-9]+(?:\.[0-9]+)?$Order price serialized as a decimal string.
^[0-9]+(?:\.[0-9]+)?$"0.5"
Original contract size in raw 6-decimal units, serialized as a decimal string.
^[0-9]+(?:\.[0-9]+)?$Unfilled contract size in raw 6-decimal units, serialized as a decimal string.
^[0-9]+(?:\.[0-9]+)?$Caller-assigned identifier when the order was placed with one.