查询产品信息
限速规则: 5次/1s (Uid)
HTTP请求
- GET /api/v2/spot/ins-loan/product-infos
请求示例
curl "https://api.bitget.com/api/v2/spot/ins-loan/product-infos?productld=xxx" \
-H "ACCESS-KEY:your apiKey" \
-H "ACCESS-SIGN:*******" \
-H "ACCESS-PASSPHRASE:*****" \
-H "ACCESS-TIMESTAMP:1659076670000" \
-H "locale:en-US" \
-H "Content-Type: application/json"
请求参数
参数名 | 参数类型 | 是否必须 | 描述 |
---|---|---|---|
productld | String | 是 | 产品ID,保证唯一性 |
返回示例
{
"code": "00000",
"msg": "success",
"requestTime": 1711697573019,
"data": {
"productId": "xxxxxxxx",
"leverage": "2",
"transferLine": "0.6667",
"spotBuyLine": "0.8",
"liquidationLine": "0.9",
"stopLiquidationLine": "0.75"
}
}
返回参数
返回字段 | 参数类型 | 字段说明 |
---|---|---|
productId | String | 产品ID |
leverage | String | 该借贷产品的最大杠杆倍数,2 或 4 |
transferLine | String | 限制划转线,举例:0.6667 |
spotBuyLine | String | 限制现货买入线,举例:0.8 |
liquidationLine | String | 强平减仓线,举例:0.9 |
stopLiquidationLine | String | 停止强平线,举例:0.75 |