跳至主要内容

創建存款單

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

HTTP 請求

POST /v5/crypto-loan-fixed/supply

請求參數

參數是否必需類型說明
orderCurrencytruestring出借幣種
orderAmounttruestring出借金額
annualRatetruestring可自訂年利率,例如 0.02 表示 2%
termtruestring固定期限 7: 7 天;14: 14 天;30: 30 天;90: 90 天;180: 180 天

響應參數

參數類型說明
orderIdstring存款單ID

請求示例

POST /v5/crypto-loan-fixed/supply HTTP/1.1
Host: api-testnet.bybit.com
X-BAPI-SIGN: XXXXXX
X-BAPI-API-KEY: XXXXXX
X-BAPI-TIMESTAMP: 1752652261840
X-BAPI-RECV-WINDOW: 5000
Content-Type: application/json
Content-Length: 104

{
"orderCurrency": "USDT",
"orderAmount": "2002.21",
"annualRate": "0.35",
"term": "7"
}

響應示例

{
"retCode": 0,
"retMsg": "ok",
"result": {
"orderId": "13007"
},
"retExtInfo": {},
"time": 1752633650147
}