Skip to main content

Get Collateral Adjustment History

Query for your LTV adjustment history.

Permission: "Spot trade"
UID rate limit: 5 req / second

HTTP Request

GET /v5/crypto-loan-common/adjustment-history

Request Parameters

ParameterRequiredTypeComments
adjustIdfalsestringCollateral adjustment transaction ID
collateralCurrencyfalsestringCollateral coin name
limitfalsestringLimit for data size per page. [1, 100]. Default: 10
cursorfalsestringCursor. Use the nextPageCursor token from the response to retrieve the next page of the result set

Response Parameters

ParameterTypeComments
listarrayObject
> collateralCurrencystringCollateral coin
> amountstringamount
> adjustIdlongCollateral adjustment transaction ID
> adjustTimelongAdjust timestamp
> preLTVstringLTV before the adjustment
> afterLTVstringLTV after the adjustment
> directionintegerThe direction of adjustment, 0: add collateral; 1: reduce collateral
> statusintegerThe status of adjustment, 1: success; 2: processing; 3: fail
nextPageCursorstringRefer to the cursor request parameter

Request Example

GET /v5/crypto-loan-common/adjustment-history?limit=2&collateralCurrency=BTC HTTP/1.1
Host: api-testnet.bybit.com
X-BAPI-SIGN: XXXXXX
X-BAPI-API-KEY: XXXXXX
X-BAPI-TIMESTAMP: 1752628288472
X-BAPI-RECV-WINDOW: 5000

Response Example

{
"retCode": 0,
"retMsg": "ok",
"result": {
"list": [
{
"adjustId": 27511,
"adjustTime": 1752627997907,
"afterLTV": "0.813743",
"amount": "0.08",
"collateralCurrency": "BTC",
"direction": 1,
"preLTV": "0.524602",
"status": 1
},
{
"adjustId": 27491,
"adjustTime": 1752218558913,
"afterLTV": "0.41983",
"amount": "0.03",
"collateralCurrency": "BTC",
"direction": 1,
"preLTV": "0.372314",
"status": 1
}
],
"nextPageCursor": "27491"
},
"retExtInfo": {},
"time": 1752628288732
}