Skip to main content
DELETE
/
orders
/
{orderId}
Cancel Order
curl --request DELETE \
  --url https://api.limitless.exchange/orders/{orderId} \
  --header 'X-API-Key: <api-key>'
{
  "message": "Order canceled successfully"
}

Documentation Index

Fetch the complete documentation index at: https://limitless-docs-ws-settlement-events.mintlify.app/llms.txt

Use this file to discover all available pages before exploring further.

This endpoint cancels by internal orderId. To cancel by either orderId or clientOrderId, use Cancel Order (Combined).
To cancel multiple orders at once, use Batch Cancel Orders (Combined), Cancel Orders (Batch), or Cancel All.

Authorizations

X-API-Key
string
header
required

API key for programmatic access. Generate at limitless.exchange -> profile menu -> Api keys.

Path Parameters

orderId
string
required

Unique identifier of the order to be cancelled

Example:

"6f52b6d2-6c9e-4a5c-8a4f-28ab4b7ff203"

Response

Order successfully cancelled

message
string
required

Confirmation message for the cancelled order

Example:

"Order canceled successfully"