Skip to main content

Get Product Info

info

Does not need authentication. Up to 50 requests per second per IP .

HTTP Request

GET/v5/earn/advance/product

Request Parameters

ParameterRequiredTypeComments
categorytruestringProduct category. SmartLeverage
coinfalsestringUnderlying asset to filter by, uppercase only, e.g. BTC, ETH
durationfalsestringProduct duration, e.g. 1d, 3d, 6d, 12d

Response Parameters

ParameterTypeComments
categorystringProduct category
listarrayObject
> categorystringProduct category
> productIdstringProduct ID
> investCoinstringInvestment coin, e.g. USDT
> underlyingAssetstringUnderlying asset (price-anchored), e.g. BTC, ETH
> directionstringTrade direction: Long, Short
> leveragestringFixed leverage multiplier, e.g. 3, 5
> durationstringProduct duration, e.g. 1d, 3d
> subscribeStartAtstringSubscription start time, Unix timestamp in ms
> subscribeEndAtstringSubscription end time, Unix timestamp in ms
> settlementTimestringSettlement time, Unix timestamp in ms
> expectReceiveAtstringExpected time to receive the transfer, Unix timestamp in ms
> minPurchaseAmountstringMinimum single order amount
> remainingAmountstringRemaining available quota
> orderPrecisionDigitalintOrder 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
}