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
categorytruestringProduct category. SmartLeverage
productIdtruestringProduct ID

Response Parameters

ParameterTypeComments
categorystringSmartLeverage
productIdstringProduct ID
breakevenPricestringBreakeven price — the best available institutional quote. Empty if no active quote
currentPricestringCurrent market price of the underlying asset. Used as reference for initialPrice
expireAtstringQuote expiry time, Unix timestamp in ms. Empty if no active quote
maxInvestmentAmountstringMaximum single order amount at current quote. Empty if no active quote
note

breakevenPrice, expireAt, and maxInvestmentAmount may be empty when no institutional quote is available. currentPrice is sourced directly from the market feed and is always present.

Request Example

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

Response Example

{
"retCode": 0,
"retMsg": "",
"result": {
"productId": "12999",
"breakevenPrice": "68650.62",
"expireAt": "1775036984839",
"maxInvestmentAmount": "1000",
"currentPrice": "68403.67",
"category": "SmartLeverage"
},
"retExtInfo": {},
"time": 1775036429311
}