Skip to main content

Get Product Info

info

Does not need authentication

HTTP Request

GET/v5/earn/advance/product

Request Parameters

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

Response Parameters

ParameterTypeComments
categorystringProduct category. DoubleWin
listarrayObject
> categorystringProduct category
> productIdstringProduct ID
> investCoinstringInvestment coin, e.g. USDT
> underlyingAssetstringUnderlying asset, e.g. BTC, ETH
> durationstringProduct duration, e.g. 1d, 2d, 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 settlement funds, Unix timestamp in ms
> minPurchaseAmountstringMinimum single order amount
> orderPrecisionDigitalintOrder amount precision (decimal places)
> isRfqProductboolfalse: fixed price range product; true: RFQ custom price range product
> lowerPriceBufferstringFixed range only (isRfqProduct=false). Lower price buffer offset. Actual lower price = initialPrice - lowerPriceBuffer
> upperPriceBufferstringFixed range only (isRfqProduct=false). Upper price buffer offset. Actual upper price = initialPrice + upperPriceBuffer
> minDeviationRatiostringRFQ only (isRfqProduct=true). Minimum allowed deviation ratio of the custom price from current price
> maxDeviationRatiostringRFQ only (isRfqProduct=true). Maximum allowed deviation ratio of the custom price from current price
> priceTickSizestringRFQ only (isRfqProduct=true). Price tick size. Custom lower/upper prices must be a multiple of this value

Request Example

GET /v5/earn/advance/product?category=DoubleWin&coin=BTC HTTP/1.1
Host: api-testnet.bybit.com

Response Example

{
"retCode": 0,
"retMsg": "",
"result": {
"category": "DoubleWin",
"list": [
{
"category": "DoubleWin",
"productId": "14092",
"investCoin": "USDT",
"underlyingAsset": "BTC",
"duration": "2d",
"expectReceiveAt": "1775290500000",
"minPurchaseAmount": "10",
"subscribeStartAt": "1775088000000",
"subscribeEndAt": "1775174399000",
"settlementTime": "1775289600000",
"orderPrecisionDigital": 4,
"isRfqProduct": true,
"lowerPriceBuffer": "",
"upperPriceBuffer": "",
"minDeviationRatio": "0.01",
"maxDeviationRatio": "0.15",
"priceTickSize": "500"
}
]
},
"retExtInfo": {},
"time": 1775100184409
}