Margin

Get Force Liquidation Record (USER_DATA)

  • Response in descending order

Weight(IP): 1

get/sapi/v1/margin/forceLiquidationRec

Query parameters

startTimeinteger

UTC timestamp in ms

endTimeinteger

UTC timestamp in ms

isolatedSymbolstring

Isolated symbol

currentinteger
Example:1

Current querying page. Start from 1. Default:1

sizeinteger
Example:100

Default:10 Max:100

recvWindowinteger
Example:5000

The value cannot be greater than 60000

timestampinteger required

UTC timestamp in ms

signaturestring required

Signature

Response

Force Liquidation History, response in descending order

totalinteger required

Example response

{
  "rows": [
    {
      "avgPrice": "0.00388359",
      "executedQty": "31.39000000",
      "orderId": 180015097,
      "price": "0.00388110",
      "qty": "31.39000000",
      "side": "SELL",
      "symbol": "BNBBTC",
      "timeInForce": "GTC",
      "isIsolated": true,
      "updatedTime": 1558941374745
    }
  ],
  "total": 1
}

Changes

Changed in 1 of the 26 revisions of this API.66

  • a484ce871a7266See the full diff
    • for the query request parameter current, the type/format was changed from number/ to integer/int32

      request-parameter-type-changed

    • for the query request parameter endTime, the type/format was changed from integer/ to integer/int64

      request-parameter-type-changed

    • for the query request parameter recvWindow, the type/format was changed from integer/ to integer/int64

      request-parameter-type-changed

    • for the query request parameter size, the type/format was changed from integer/ to integer/int32

      request-parameter-type-changed

    • for the query request parameter startTime, the type/format was changed from integer/ to integer/int64

      request-parameter-type-changed

    • for the query request parameter timestamp, the type/format was changed from integer/ to integer/int64

      request-parameter-type-changed

    • the response property code became required for the status 400

      response-property-became-required

    • the response property code became required for the status 401

      response-property-became-required

    • the response property msg became required for the status 400

      response-property-became-required

    • the response property msg became required for the status 401

      response-property-became-required

    • added the required property rows to the response with the 200 status

      response-required-property-added

    • added the required property total to the response with the 200 status

      response-required-property-added