Repay
Covers: Margin trade (Classic Account)
HTTP Request
POST /v5/spot-cross-margin-trade/repay
Request Parameters
Parameter | Required | Type | Comments |
---|---|---|---|
coin | true | string | Coin name |
qty | false | string | Amount to repay
|
completeRepayment | false | integer | Whether to pay off all debts. 0 (default): false, 1 : true |
Response Parameters
Parameter | Type | Comments |
---|---|---|
repayId | string | Repayment transaction ID |
Request Example
- HTTP
- Python
POST /v5/spot-cross-margin-trade/repay HTTP/1.1
Host: api-testnet.bybit.com
Content-Type: application/json
X-BAPI-API-KEY: XXXXXX
X-BAPI-TIMESTAMP: 1677751944347
X-BAPI-RECV-WINDOW: 5000
X-BAPI-SIGN: XXXXXX
Content-Length: 66
{
"coin": "ETH",
"qty": null,
"completeRepayment": 1
}
from pybit.unified_trading import HTTP
session = HTTP(
testnet=True,
api_key="XXXXX",
api_secret="XXXXX",
)
print(session.spot_margin_trade_normal_repay(
coin="ETH",
completeRepayment=1,
))
Response Example
{
"retCode": 0,
"retMsg": "success",
"result": {
"repayId": "19070"
},
"retExtInfo": {},
"time": 1677751941219
}