Skip to main content

Create Supply Order

Permission: "Spot trade"
UID rate limit: 1 req / second

HTTP Request

POST /v5/crypto-loan-fixed/supply

Request Parameters

ParameterRequiredTypeComments
orderCurrencytruestringCurrency to supply
orderAmounttruestringAmount to supply
annualRatetruestringCustomizable annual interest rate, e.g., 0.02 means 2%
termtruestringFixed term 7: 7 days; 14: 14 days; 30: 30 days; 90: 90 days; 180: 180 days

Response Parameters

ParameterTypeComments
orderIdstringSupply order ID

Request Example

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"
}

Response Example

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