v1
latestOpenAPI 3.0.32026-07-2613529376.3 KBQuery delisting orders
The endpoint returns the authenticated account's delisting-related order history from the order-history index. The response combines two categories of orders, each identified by the delistingKind field: reverse close orders that the platform generates when a market is delisted (delistingKind = reverse, clientOrderId prefixed with delisting-), and active orders canceled at the moment of delisting (delistingKind = canceled). The endpoint returns a flat array sorted by finishAt descending, then id descending.
Set the status parameter to narrow the response: filled returns only reverse close orders that reached the filled outcome, and delisting returns only orders canceled during delisting. Omit status to return both categories merged in a single array.
<Note> The endpoint supports pagination via `limit` (default: 500, max: 500) and `offset` (default: 0); the sum of `offset` and `limit` must not exceed 10000. A response that returns fewer than `limit` records indicates the last page. </Note> <Note> **Date filter window:** the date range filters orders by the `finishAt` timestamp. The maximum span between `startDate` and `endDate` is **31 days**. `endDate` values greater than the current time are clamped to `now`. </Note> <Warning> Rate limit: 10000 requests/10 sec. </Warning>Request body
Example request
{
"market": "BTC_USDT",
"status": "filled",
"startDate": 1731369600,
"endDate": 1733961600,
"limit": 500,
"request": "{{request}}",
"nonce": 1594297865000
}Response
Successful response - returns a flat array of delisting-related orders sorted by finishAt descending, then id descending. Returns an empty array when no delisting orders match the filters.
Example response
[
{
"id": 2286423327099,
"clientOrderId": "delisting-2286423327099",
"createdAt": 1778077388.002424,
"finishAt": 1778077400.123456,
"market": "BTC_USDT",
"side": "sell",
"type": "market",
"price": "61234.5000000000",
"amount": "0.0500000000",
"dealStock": "0.0500000000",
"dealMoney": "3061.7250000000",
"fee": "1.5308625000",
"feeAsset": "USDT",
"status": "filled",
"delistingKind": "reverse"
}
]