Skip to main content

Get Cross Liquidation History

Get Cross Liquidation History

Frequency limit:10 times/1s (UID)

Description

HTTP Request

  • GET /api/v2/margin/crossed/liquidation-history
Request Example
curl "https://api.bitget.com/api/v2/margin/crossed/liquidation-history?limit=20&startTime=1779235200000&endTime=1779840000000" \
-H "ACCESS-KEY:*******" \
-H "ACCESS-SIGN:*******" \
-H "ACCESS-PASSPHRASE:*****" \
-H "ACCESS-TIMESTAMP:1659076670000" \
-H "locale:en-US" \
-H "Content-Type: application/json" \

Request Parameters

ParameterTypeRequiredDescription
startTimeStringYesStart time, Unix millisecond timestamp
endTimeStringNoEnd time, Unix millisecond timestamp
Maximum interval between start time and end time is 90 days
limitStringNoNumber of quiries
Default: 100, maximum: 500
idLessThanStringNoFor turning pages. The first query is not passed. When querying data in the second page and the data beyond, the last liqId returned in the last query is used, and the result will return data with a value less than this one; the query response time will be shortened.
Response Example
{
"code": "00000",
"msg": "success",
"requestTime": 1668134626684,
"data": {
"minId": "1",
"maxId": "1",
"resultList": [
{
"liqId": "1",
"liqStartTime": "1356756456873",
"liqEndTime": "1356756456873",
"liqRiskRatio": "0.1",
"totalAssets": "154",
"totalDebt": "123",
"liqFee":"31.1",
"uTime": "1668134458717",
"cTime": "1668134458717"
}
]
}
}

Response Parameters

ParameterTypeDescription
resultListListResult list
>liqIdStringLiquidation ID
>liqStartTimeStringLiquidation start time
>liqEndTimeStringLiquidation end time
>liqRiskRatioStringRisk ratio in liquidation
>totalAssetsStringTotal assets in liquidation
In USDT
>totalDebtStringTotal debt in liquidation
In USDT
>liqFeeStringLiquidation transaction fees
>cTimeStringCreation time, millisecond timestamp
>uTimeStringUpdate time, millisecond timestamp
maxIdStringMax ID of current search result
minIdStringMin ID of current search result, use: idLessThan=minId in the next query

How was your Reading Experience with us?