查詢可存市場
信息
公共接口, 無需鑒權
如果您是存款方, 可通過該接口查詢到市場上可匹配的借款單報價
HTTP 請求
GET /v5/crypto-loan-fixed/supply-order-quote
請求參數
參數 | 是否必需 | 類型 | 說明 |
---|---|---|---|
orderCurrency | true | string | 幣種名稱 |
term | false | string | 固定期限 7 : 7 天;14 : 14 天;30 : 30 天;90 : 90 天;180 : 180 天 |
orderBy | true | string | 排序依據,apy : 年化利率;term : 期限;quantity : 數量 |
sort | false | integer | 0 : 升序,預設;1 : 降序 |
limit | false | string | 每頁數量限制. [1 , 100 ]. 默認: 10 |
響應參數
參數 | 類型 | 說明 |
---|---|---|
list | array | Object |
> orderCurrency | string | 幣種名稱 |
> term | integer | 固定期限 7 : 7 天;14 : 14 天;30 : 30 天;90 : 90 天;180 : 180 天 |
> annualRate | string | 年化利率 |
> qty | string | 數量 |
請求示例
- HTTP
- Python
- Node.js
GET /v5/crypto-loan-fixed/supply-order-quote?orderCurrency=USDT&orderBy=apy HTTP/1.1
Host: api-testnet.bybit.com
響應示例
{
"retCode": 0,
"retMsg": "ok",
"result": {
"list": [
{
"annualRate": "0.02",
"orderCurrency": "USDT",
"qty": "1000.1234",
"term": 60
},
{
"annualRate": "0.022",
"orderCurrency": "USDT",
"qty": "212.1234",
"term": 7
}
]
},
"retExtInfo": {},
"time": 1752652136224
}