跳至主要内容

查詢質押借幣持倉

權限: "現貨"
頻率: 5次/秒

HTTP 請求

GET /v5/crypto-loan-common/position

請求參數

None

響應參數

參數類型說明
borrowListarrayObject
> fixedTotalDebtstring定期借款總負債(幣)
> fixedTotalDebtUSDstring定期借款總負債(美元)
> flexibleHourlyInterestRatestring活期借款每小時利率
> flexibleTotalDebtstring活期借款總負債(幣)
> flexibleTotalDebtUSDstring活期借款總負債(美元)
> loanCurrencystring借款幣種
collateralListarrayObject
> amountstring抵押金額(幣)
> amountUSDstring抵押金額(USD,經分層抵押率計算後)
> currencystring抵押幣種
ltvstring質押率(LTV)
supplyListarrayObject
> amountstring出借金額(幣)
> amountUSDstring出借金額(USD)
> currencystring出借幣種
totalCollateralstring抵押總金額(USD)
totalDebtstring總負債金額(定期 + 活期,USD)
totalSupplystring出借總金額(USD)

請求示例

GET /v5/crypto-loan-common/position HTTP/1.1
Host: api-testnet.bybit.com
X-BAPI-SIGN: XXXXXX
X-BAPI-API-KEY: XXXXXX
X-BAPI-TIMESTAMP: 1752628288472
X-BAPI-RECV-WINDOW: 5000

響應示例

{
"retCode": 0,
"retMsg": "ok",
"result": {
"borrowList": [
{
"fixedTotalDebt": "0",
"fixedTotalDebtUSD": "0",
"flexibleHourlyInterestRate": "0.0000001361462",
"flexibleTotalDebt": "0.08800022",
"flexibleTotalDebtUSD": "9355.37",
"loanCurrency": "BTC"
},
{
"fixedTotalDebt": "0.1",
"fixedTotalDebtUSD": "282.8",
"flexibleHourlyInterestRate": "0.00000188498892",
"flexibleTotalDebt": "0",
"flexibleTotalDebtUSD": "0",
"loanCurrency": "ETH"
}
],
"collateralList": [
{
"amount": "0.12",
"amountUSD": "9930.11",
"currency": "BTC"
},
{
"amount": "2",
"amountUSD": "4524.81",
"currency": "ETH"
},
{
"amount": "4002.12",
"amountUSD": "3201.69",
"currency": "USDT"
},
{
"amount": "1000",
"amountUSD": "724.8",
"currency": "USDC"
}
],
"ltv": "0.524344",
"supplyList": [
{
"amount": "800.13041095890410959",
"amountUSD": "800.13",
"currency": "USDT"
}
],
"totalCollateral": "18381.41",
"totalDebt": "9638.17",
"totalSupply": "800.13"
},
"retExtInfo": {},
"time": 1752627962000
}