Skip to main content

Double Win Offers

WebSocket public URL

  • Mainnet:
    Earn: wss://stream.bybit.com/v5/public/fp

  • Testnet:
    Earn: wss://stream-testnet.bybit.com/v5/public/fp

info
  • Subscribing to this topic does not require authentication.
  • This topic pushes fixed price range products (isRfqProduct=false) only. For RFQ products, use Get Custom Product Quote to obtain a quote on demand.
  • Recommended usage: call Get Fixed Product Quote on initialization to get the current quote, then subscribe to this topic to maintain a live view. If the WebSocket disconnects, call Get Fixed Product Quote to refresh before re-subscribing.

Topic: earn.doublewin.offers

Response Parameters

ParameterTypeComments
topicstringTopic name. earn.doublewin.offers
dataarrayObject
> pstringProduct ID
> cstringCurrent index price of the underlying asset
> lstringCurrent maximum leverage multiplier
> mstringMaximum single order amount at current quote
> estringQuote expiry time, Unix timestamp in ms

Push Example

{
"topic": "earn.doublewin.offers",
"data": [
{
"p": "14082",
"c": "2050.99",
"l": "37.78",
"m": "1000",
"e": "1775111431407"
},
{
"p": "14083",
"c": "2050.99",
"l": "75.57",
"m": "700",
"e": "1775111431552"
},
{
"p": "14088",
"c": "66647.87",
"l": "23.25",
"m": "500",
"e": "1775111432115"
},
{
"p": "14089",
"c": "66647.87",
"l": "23.25",
"m": "1000",
"e": "1775111432115"
}
]
}