Skip to main content

Get Loan LTV Adjustment History

Query the transaction history of collateral amount adjustment

Permission: "Spot trade"

info
  • Support querying last 6 months adjustment transactions
  • Only the ltv adjustment transactions launched by the user can be queried

HTTP Request

GET /v5/crypto-loan/adjustment-history

Request Parameters

ParameterRequiredTypeComments
orderIdfalsestringLoan order ID
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
> orderIdstringLoan order ID
> adjustIdstringCollateral adjustment transaction ID
> adjustTimestringAdjust timestamp
> preLTVstringLTV before the adjustment
> afterLTVstringLTV after the adjustment
> directionintegerThe direction of adjustment, 0: add collateral; 1: reduce collateral
nextPageCursorstringRefer to the cursor request parameter

Request Example

GET /v5/crypto-loan/adjustment-history?adjustId=1794318409405331968 HTTP/1.1
Host: api-testnet.bybit.com
X-BAPI-SIGN: XXXXXX
X-BAPI-API-KEY: XXXXXX
X-BAPI-TIMESTAMP: 1728635871668
X-BAPI-RECV-WINDOW: 5000

Response Example

{
"retCode": 0,
"retMsg": "request.success",
"result": {
"list": [
{
"adjustId": "1794318409405331968",
"adjustTime": "1728635422814",
"afterLTV": "0.7164",
"amount": "0.001",
"collateralCurrency": "BTC",
"direction": 1,
"orderId": "1794267532472646144",
"preLTV": "0.6546"
}
],
"nextPageCursor": "1844656778923966466"
},
"retExtInfo": {},
"time": 1728635873329
}