Skip to main content

Repay Liability

You can manually repay the liabilities of Unified account

Permission: USDC Contracts

info
  1. Starting Mar 17, 2026 (gradual rollout, fully released on Mar 24, 2026), BYUSDT can be used for repayment.
  2. MNT will temporarily not be used for repayment, and repaying MNT liabilities through convert-repay is not supported. However, you may still use Manual Repay Without Asset Conversion to repay MNT using your existing balance.
  3. Starting Feb 10, 2026 at 08:00 UTC, UTA Loan manual repayments will be updated to calculate coin-conversion repayment fees using the higher of the collateral or debt asset fee rate and introduce a per-transaction coin-conversion limit of USD 300,000 (Total coin-conversion amount must less than 300,000 USD equivalent) to strengthen stability and risk controls. Please refer to UTA Loan manual repayment update

HTTP Request

POST/v5/account/quick-repayment

Request Parameters

ParameterRequiredTypeComments
coinfalsestringThe coin with liability, uppercase only
  • Input the specific coin: repay the liability of this coin in particular
  • No coin specified: repay the liability of all coins

Response Parameters

ParameterTypeComments
listarrayObject
> coinstringCoin used for repayment
  • The order of currencies used to repay liability is based on liquidationOrder from this endpoint
> repaymentQtystringRepayment qty

Request Example

POST /v5/account/quick-repayment HTTP/1.1
Host: api-testnet.bybit.com
X-BAPI-SIGN: XXXXXX
X-BAPI-API-KEY: xxxxxxxxxxxxxxxxxx
X-BAPI-TIMESTAMP: 1701848610019
X-BAPI-RECV-WINDOW: 5000
Content-Type: application/json
Content-Length: 22

{
"coin": "USDT"
}

Response Example

{
"retCode": 0,
"retMsg": "SUCCESS",
"result": {
"list": [
{
"coin": "BTC",
"repaymentQty": "0.10549670"
},
{
"coin": "ETH",
"repaymentQty": "2.27768114"
}
]
},
"retExtInfo": {},
"time": 1701848610941
}