Orders
Create, execute, cancel, and monitor orders across CeFi and DeFi.
post
/ordersCreate new orderCreates a new order. For DeFi orders, returns unsigned payloads for client signing.get/ordersList user ordersReturns a paginated list of the authenticated user's orders with execution data. All statuses are returned by default; narrow the results with the status query parameter.post/orders/{id}/executeExecute pending orderExecutes a pending order using client-provided signatures for the unsigned payloadspost/orders/all/cancelCancel all open orders on a venueCancels all of your open orders on the given venue and returns how manypost/orders/{id}/cancelCancel a limit order (CeFi or DeFi)Venue-polymorphic cancel. The payloads field is the signal:post/orders/{id}/cancel/executeExecute a resting DeFi limit order cancellationSubmits the client's signatures over the payloads returned byget/orders/{id}Get a single orderReturns full execution details for an order owned by the authenticated user.patch/orders/{id}Modify an active limit orderChanges the price and/or quantity of an active CeFi limit order. The changeget/orders/{id}/statusGet order statusReturns the current status of an orderdelete/orders/{id}Cancel a pending limit order (CeFi)Deprecated: use POST /orders/{id}/cancel, the venue-polymorphic entry.