Skip to main content

Get Fixed Product Quote

info

Does not need authentication

note

This endpoint applies to fixed price range products (isRfqProduct=false) only. For RFQ products, use Get Custom Product Quote to obtain a quote.

You can also subscribe to the WebSocket topic earn.doublewin.offers to receive real-time quote updates.

HTTP Request

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

Request Parameters

ParameterRequiredTypeComments
categorytruestringProduct category. DoubleWin
productIdtruestringProduct ID

Response Parameters

ParameterTypeComments
categorystringDoubleWin
productIdstringProduct ID
leveragestringCurrent maximum leverage multiplier. Empty if no active quote
expireTimestringQuote expiry time, Unix timestamp in ms. The quote must be used before this time. Empty if no active quote
maxInvestmentAmountstringMaximum single order amount at current quote. Empty if no active quote
currentPricestringCurrent index price of the underlying asset. Use as initialPrice when placing an order

Request Example

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

Response Example

{
"retCode": 0,
"retMsg": "",
"result": {
"productId": "14084",
"leverage": "9.30452991038687184855947115",
"expireTime": "1775102611946",
"maxInvestmentAmount": "1000",
"currentPrice": "66628.76",
"category": "DoubleWin"
},
"retExtInfo": {},
"time": 1775102648543
}