Skip to main content

Get Product Quote

info

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

HTTP Request

GET /v5/earn/advance/product-extra-info

Request Parameters

ParameterRequiredTypeComments
productIdtruestringProduct ID
categorytruestringProduct category,DualAssets

Response Parameters

ParameterTypeComments
categorystringDualAssets
listarrayObject
> productIdstringProduct ID
> currentPricestringCurrent market price
> buyLowPricearrayList of available prices for Buy Low direction
>> selectPricestringOptional target price
>> apyE8stringAnnual Percentage Yield (e8 precision, i.e. APY × 10^8)
>> maxInvestmentAmountstringMaximum investment amount at this price
>> expiredAtstringThe expiry time,Unix timestamp in ms
> sellHighPricearrayList of available prices for Sell High direction
>> selectPricestringOptional target price
>> apyE8stringAnnual Percentage Yield (e8 precision)
>> maxInvestmentAmountstringMaximum investment amount at this price
>> expiredAtstringThe expiry time,Unix timestamp in ms

Request Example

GET /v5/earn/advance/product-extra-info?category=DualAssets&productId=36340 HTTP/1.1
Host: api-testnet.bybit.com

Response Example

{
"retCode": 0,
"retMsg": "",
"result": {
"category": "DualAssets",
"list": [
{
"productId": "36340",
"currentPrice": "1.5275",
"buyLowPrice": [
{
"selectPrice": "1.52",
"apyE8": "810810000",
"maxInvestmentAmount": "2000",
"expiredAt": "1773814863140"
},
{
"selectPrice": "1.51",
"apyE8": "770310000",
"maxInvestmentAmount": "2000",
"expiredAt": "1773814863140"
},
{
"selectPrice": "1.5",
"apyE8": "729810000",
"maxInvestmentAmount": "2000",
"expiredAt": "1773814863140"
},
{
"selectPrice": "1.4",
"apyE8": "33927427",
"maxInvestmentAmount": "15982.7136",
"expiredAt": "1773814764000"
},
{
"selectPrice": "1.45",
"apyE8": "47326344",
"maxInvestmentAmount": "15982.7136",
"expiredAt": "1773814764000"
},
{
"selectPrice": "1.527398",
"apyE8": "259263094",
"maxInvestmentAmount": "15982.7136",
"expiredAt": "1773814770000"
}
],
"sellHighPrice": [
{
"selectPrice": "1.54",
"apyE8": "729810000",
"maxInvestmentAmount": "1309.92",
"expiredAt": "1773814863140"
},
{
"selectPrice": "1.55",
"apyE8": "49979611",
"maxInvestmentAmount": "10480",
"expiredAt": "1773814764000"
},
{
"selectPrice": "1.52",
"apyE8": "810810000",
"maxInvestmentAmount": "1309.92",
"expiredAt": "1773814863140"
},
{
"selectPrice": "1.53",
"apyE8": "770310000",
"maxInvestmentAmount": "1309.92",
"expiredAt": "1773814863140"
}
]
}
]
},
"retExtInfo": {},
"time": 1773814753684
}