delete
https://api.liquiditytech.com/api/v1/trading/cancelAll
Recent Requests
Log in to see full request history
| Time | Status | User Agent | |
|---|---|---|---|
Retrieving recent requests… | |||
Loading…
Rate Limit: 50 requests per 10 seconds
Cancel all open orders across all portfolios for the authenticated user. Use exchangeType or sym to narrow the scope — for example, cancel only Binance orders, or only orders for a specific trading pair.
Request body: Request parameters must be sent as a JSON body, not as query string parameters.
Request
| Name | Type | Mandatory | Description |
|---|---|---|---|
exchangeType | String | N | Limit cancellation to a specific exchange. For example: BINANCE, OKX, EDX. If omitted, orders on all exchanges are cancelled. |
sym | String | N | Limit cancellation to a specific trading pair. For example: BINANCE_SPOT_BTC_USDT. If omitted, all symbols are included. |
Example Request
{
"exchangeType": "BINANCE",
"sym": "BINANCE_SPOT_ETH_USDT"
}
Example Response
{
"code": 200000,
"message": "Success",
"data": {}
}
