Skip to main content

Discount Buy 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.
  • Recommended usage: call Get 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 Product Quote to refresh before re-subscribing.

Topic: earn.discountbuy.offers

Response Parameters

ParameterTypeComments
topicstringTopic name. earn.discountbuy.offers
dataarrayObject
> pstringProduct ID
> cstringCurrent index price of the underlying asset
> bstringAnchor buy price
> kstringKnockout price
> estringAnnualized interest rate in e8 precision. Actual rate = knockoutCouponE8 / 1e8
> mstringMaximum investment amount for this quote
> istringMarket maker institution ID. Must be passed as-is when placing an order
> xstringQuote expiry time, Unix timestamp in ms. 0 means no expiry is set by the institution

Push Example

{
"topic": "earn.discountbuy.offers",
"data": [
{
"p": "12723",
"c": "74551.1",
"b": "73847",
"k": "75300",
"e": "10000000",
"m": "950000",
"i": "103489231",
"x": "1776154870336"
}
]
}