Skip to main content

Adjust Collateral Amount

You can increase or reduce collateral amount. When you reduce, please follow the max. allowed reduction amount.

Permission: "Spot trade"

info
  • The adjusted collateral amount will be returned to or duducted from Funding account

HTTP Request

POST /v5/crypto-loan/adjust-ltv

Request Parameters

ParameterRequiredTypeComments
orderIdtruestringLoan order ID
amounttruestringAdjustment amount
directiontruestring0: add collateral; 1: reduce collateral

Response Parameters

ParameterTypeComments
adjustIdstringCollateral adjustment transaction ID

Request Example

POST /v5/crypto-loan/adjust-ltv HTTP/1.1
Host: api-testnet.bybit.com
X-BAPI-SIGN: XXXXXX
X-BAPI-API-KEY: XXXXXX
X-BAPI-TIMESTAMP: 1728635421137
X-BAPI-RECV-WINDOW: 5000
Content-Type: application/json
Content-Length: 85

{
"orderId": "1794267532472646144",
"amount": "0.001",
"direction": "1"
}

Response Example

{
"retCode": 0,
"retMsg": "request.success",
"result": {
"adjustId": "1794318409405331968"
},
"retExtInfo": {},
"time": 1728635422833
}