Get Product Info
info
Does not need authentication. Up to 50 requests per second per IP .
HTTP Request
GET/v5/earn/advance/productRequest Parameters
| Parameter | Required | Type | Comments |
|---|---|---|---|
| category | true | string | Product category. SmartLeverage |
| coin | false | string | Underlying asset to filter by, uppercase only, e.g. BTC, ETH |
| duration | false | string | Product duration, e.g. 1d, 3d, 6d, 12d |
Response Parameters
| Parameter | Type | Comments |
|---|---|---|
| category | string | Product category |
| list | array | Object |
| > category | string | Product category |
| > productId | string | Product ID |
| > investCoin | string | Investment coin, e.g. USDT |
| > underlyingAsset | string | Underlying asset (price-anchored), e.g. BTC, ETH |
| > direction | string | Trade direction: Long, Short |
| > leverage | string | Fixed leverage multiplier, e.g. 3, 5 |
| > duration | string | Product duration, e.g. 1d, 3d |
| > subscribeStartAt | string | Subscription start time, Unix timestamp in ms |
| > subscribeEndAt | string | Subscription end time, Unix timestamp in ms |
| > settlementTime | string | Settlement time, Unix timestamp in ms |
| > expectReceiveAt | string | Expected time to receive the transfer, Unix timestamp in ms |
| > minPurchaseAmount | string | Minimum single order amount |
| > remainingAmount | string | Remaining available quota |
| > orderPrecisionDigital | int | Order amount precision |
Request Example
GET /v5/earn/advance/product?category=SmartLeverage&coin=BTC HTTP/1.1
Host: api-testnet.bybit.com
Response Example
{
"retCode": 0,
"retMsg": "",
"result": {
"category": "SmartLeverage",
"list": [
{
"category": "SmartLeverage",
"productId": "13015",
"investCoin": "USDT",
"underlyingAsset": "BTC",
"direction": "Short",
"leverage": "10",
"duration": "7d",
"expectReceiveAt": "1775635800000",
"subscribeStartAt": "1775001600000",
"subscribeEndAt": "1775087999000",
"settlementTime": "1775635200000",
"minPurchaseAmount": "10",
"remainingAmount": "9994748366.907",
"orderPrecisionDigital": 4
}
]
},
"retExtInfo": {},
"time": 1775001977686
}