Skip to main content

Adjust Collateral Amount

You can increase or reduce your collateral amount. When you reduce, please obey the Get Max. Allowed Collateral Reduction Amount

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

info
  • The adjusted collateral amount will be returned to or deducted from the Funding wallet.

HTTP Request

POST /v5/crypto-loan-common/adjust-ltv

Request Parameters

ParameterRequiredTypeComments
currencytruestringCollateral coin
amounttruestringAdjustment amount
directiontruestring0: add collateral; 1: reduce collateral

Response Parameters

ParameterTypeComments
adjustIdlongCollateral adjustment transaction ID

Request Example

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

{
"currency": "BTC",
"amount": "0.08",
"direction": "1"
}

Response Example

{
"retCode": 0,
"retMsg": "ok",
"result": {
"adjustId": 27511
},
"retExtInfo": {},
"time": 1752627997915
}