Skip to main content

Cancel All Orders By Symbol

Cancel all open orders for a specified trading pair.

API Information

Request Parameters

ParameterLocationTypeRequiredDescription
symbolpathstringYesTrading pair, e.g. BTC_USDT

Request Example

DELETE /fapi/v1/orders/symbol/BTC_USDT

Response Fields

FieldTypeDescription
codeintegerStatus code
messagestringResponse message
dataobjectCancellation results aggregated by trading pair

Response Example

{
"code": 0,
"message": "success",
"data": {
"BTC_USDT": 3
}
}