Skip to main content

Get Product Info

info

Does not need authentication

HTTP Request

GET/v5/earn/advance/product

Request Parameters

ParameterRequiredTypeComments
categorytruestringProduct category. DiscountBuy
coinfalsestringFilter by underlying asset, e.g. BTC, ETH

Response Parameters

ParameterTypeComments
listarrayObject
> categorystringProduct category. DiscountBuy
> productIdstringProduct ID
> coinstringInvestment coin, e.g. USDT
> underlyingAssetstringUnderlying asset, e.g. BTC, ETH
> settlementTimestringSettlement time, Unix timestamp in ms
> durationstringProduct duration, e.g. 7d
> isVipProductboolWhether this is a VIP-exclusive product
> subscribeStartAtstringSubscription start time, Unix timestamp in ms
> subscribeEndAtstringSubscription end time, Unix timestamp in ms
> minPurchaseAmountstringMinimum purchase amount
> remainingAmountstringRemaining purchasable quota for this product
> orderPrecisionDigitalintOrder amount precision (decimal places)
> expectReceiveAtstringExpected settlement credit time, Unix timestamp in ms. Equal to settlementTime + 15 minutes

Request Example

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

Response Example

{
"retCode": 0,
"retMsg": "",
"result": {
"category": "",
"list": [
{
"category": "DiscountBuy",
"productId": "7038",
"coin": "USDT",
"underlyingAsset": "BTC",
"settlementTime": "1776240000000",
"duration": "1d",
"isVipProduct": true,
"subscribeStartAt": "1776124800000",
"subscribeEndAt": "1776211199000",
"minPurchaseAmount": "100",
"remainingAmount": "10000000",
"orderPrecisionDigital": 4,
"expectReceiveAt": "1776240900000"
},
{
"category": "DiscountBuy",
"productId": "7037",
"coin": "USDT",
"underlyingAsset": "BTC",
"settlementTime": "1776240000000",
"duration": "1d",
"isVipProduct": false,
"subscribeStartAt": "1776124800000",
"subscribeEndAt": "1776211199000",
"minPurchaseAmount": "100",
"remainingAmount": "9998547.575",
"orderPrecisionDigital": 4,
"expectReceiveAt": "1776240900000"
}
]
},
"retExtInfo": {},
"time": 1776152654908
}