查询风险率
限速规则: 5次/1s (Uid)
HTTP请求
- GET /api/v2/spot/ins-loan/ltv-convert
请求示例
curl "https://api.bitget.com /api/v2/spot/ins-loan/ltv-convert" \
-H "ACCESS-KEY:your apiKey" \
-H "ACCESS-SIGN:*******" \
-H "ACCESS-PASSPHRASE:*****" \
-H "ACCESS-TIMESTAMP:1659076670000" \
-H "locale:en-US" \
-H "Content-Type: application/json"
请求参数
N/A
返回示例
{
"code": "00000",
"msg": "success",
"requestTime": 1711697588556,
"data": {
"ltv": "0.6667",
"subAccountUids": [
"xxxxxxxxxx",
"xxxxxxxxxx"
],
"unpaidUsdtAmount": "1.12",
"usdtBalance":"1223",
"unpaidInfo":[
{
"coin":"USDT",
"unpaidQty":"12",
"unpaidInterest":"1.2"
}
],
"balanceInfo":[
{
"coin":"USDT",
"price":"12",
"amount":"1.2",
"convertedUsdtAmount":"12"
}
]
}
}
返回参数
返回字段 | 参数类型 | 字段说明 |
---|---|---|
ltv | String | 风险率,0.6667 |
subAccountUids | Array | 绑定机构借贷产品的风控单元的子账号UID |
usdtBalance | String | 总资产(保证金币种资产折算为USDT资产) |
unpaidUsdtAmount | String | 总负债 (USDT) |
unpaidInfo | Array | 负债明细 |
> coin | String | 币种 |
> unpaidQty | String | 未还本金 |
> unpaidInterest | String | 未还利息 |
balanceInfo | Array | 资产明细 |
> coin | String | 保证金币种 |
> price | String | 保证金币种价格 |
> amount | String | 保证金数量 |
> convertedUsdtAmount | String | 保证金折算金额(USDT) |