跳至主要内容

查詢固定利率借款掛單報價

HTTP 請求

GET/v5/spot-margin-trade/fixedborrow-order-quote

請求參數

參數是否必需類型說明
orderCurrencytruestring幣種名稱
termfalsestring借款期限。7:7天;14:14天;30:30天;90:90天;180:180天
orderByfalsestring排序字段。apy:年化利率;term:期限;quantity:數量
sortfalseinteger排序方向。0:升序(默認);1:降序
limitfalseinteger每頁返回數量,[1, 100],默認:10

響應參數

參數類型說明
listarrayObject
> orderCurrencystring幣種名稱
> terminteger借款期限。7:7天;14:14天;30:30天;90:90天;180:180天
> annualRatestring年化利率
> qtystring數量

請求示例

GET /v5/spot-margin-trade/fixedborrow-order-quote?orderCurrency=ETH&orderBy=apy&limit=10 HTTP/1.1
Host: api.bybit.com
X-BAPI-SIGN: XXXXX
X-BAPI-API-KEY: xxxxxxxxxxxxxxxxxx
X-BAPI-TIMESTAMP: 1692696840996
X-BAPI-RECV-WINDOW: 5000

響應示例

{
"retCode": 0,
"retMsg": "success",
"result": {
"list": [
{
"orderCurrency": "ETH",
"term": 30,
"annualRate": "0.026",
"qty": "0.1"
},
{
"orderCurrency": "ETH",
"term": 60,
"annualRate": "0.033",
"qty": "0.1"
},
{
"orderCurrency": "ETH",
"term": 90,
"annualRate": "0.038",
"qty": "0.1"
},
{
"orderCurrency": "ETH",
"term": 30,
"annualRate": "0.1",
"qty": "0.6"
},
{
"orderCurrency": "ETH",
"term": 60,
"annualRate": "0.1",
"qty": "0.1"
}
]
},
"retExtInfo": {},
"time": 1775617874744
}