Rate limit issues

Currently i am using /option/chain to get full option chain for an underlying symbol.But I am hitting rate limit.Is there a way i can increase my rate limit? Or is there a better way i can get full option chain for an underlying symbol

To address the issue described above, you can subscribe to the market feeder WebSocket in option_chain mode. This mode allows you to efficiently manage the data feed for options trading.

For comprehensive details and guidelines, please refer to the official documentation of the Market Feeder WebSocket and Sample implementation of websocket.

Nope thats not what I want.For example lets take SBIN,if i am using websocket with option_chain mode the output is

{'type': 'live_feed', 'feeds': {'NSE_EQ|INE062A01020': {'oc': {'ltpc': {'ltp': 841.5, 'ltt': '1720083897588', 'ltq': '85', 'cp': 839.95}, 'bidAskQuote': {'bq': 778, 'bp': 841.45, 'aq': 20388, 'ap': 841.5}, 'optionGreeks': {}, 'eFeedDetails': {'atp': 839.79, 'cp': 839.95, 'vtt': '10639714', 'tbq': 933737.0, 'tsq': 2103711.0, 'lc': 755.95, 'uc': 923.9, 'yh': 912.0, 'yl': 543.2}}}}}

But if i am using /option/chain i am getting

[{'expiry': '2024-07-25',
  'pcr': 0.0667,
  'strike_price': 1000.0,
  'underlying_key': 'NSE_EQ|INE062A01020',
  'underlying_spot_price': 842.3,
  'call_options': {'instrument_key': 'NSE_FO|142682',
   'market_data': {'ltp': 0.6,
    'volume': 301500,
    'oi': 1528500.0,
    'close_price': 0.6,
    'bid_price': 0.55,
    'bid_qty': 27750,
    'ask_price': 0.6,
    'ask_qty': 63000,
    'prev_oi': 1593000.0},
   'option_greeks': {'vega': 0.1151,
    'theta': -0.0936,
    'gamma': 0.0008,
    'delta': 0.0241,
    'iv': 34.18}},
  'put_options': {'instrument_key': 'NSE_FO|142683',
   'market_data': {'ltp': 145.3,
    'volume': 750,
    'oi': 102000.0,
    'close_price': 152.2,
    'bid_price': 150.7,
    'bid_qty': 750,
    'ask_price': 153.0,
    'ask_qty': 750,
    'prev_oi': 102000.0},
   'option_greeks': {'vega': 0.0,
    'theta': 0.0,
    'gamma': 0.0,
    'delta': -1.0,
    'iv': 0.0}}},
 ...................
 {'expiry': '2024-07-25',
  'pcr': 0.0849,
  'strike_price': 960.0,
  'underlying_key': 'NSE_EQ|INE062A01020',
  'underlying_spot_price': 842.3,
  'call_options': {'instrument_key': 'NSE_FO|142674',
   'market_data': {'ltp': 0.9,
    'volume': 266250,
    'oi': 362250.0,
    'close_price': 1.0,
    'bid_price': 0.9,
    'bid_qty': 23250,
    'ask_price': 0.95,
    'ask_qty': 10500,
    'prev_oi': 336750.0},
   'option_greeks': {'vega': 0.1747,
    'theta': -0.1216,
    'gamma': 0.0014,
    'delta': 0.0399,
    'iv': 29.3}},
  'put_options': {'instrument_key': 'NSE_FO|142675',
   'market_data': {'ltp': 115.0,
    'volume': 750,
    'oi': 30750.0,
    'close_price': 130.6,
    'bid_price': 112.5,
    'bid_qty': 750,
    'ask_price': 114.95,
    'ask_qty': 1500,
    'prev_oi': 30750.0},
   'option_greeks': {'vega': 0.2298,
    'theta': -0.1761,
    'gamma': 0.0017,
    'delta': -0.9438,
    'iv': 32.23}}}]

Both are no the same!
I want complete option chain of the stock i am giving

I apologize for any inconvenience. To ensure fairness and optimal service performance, we maintain consistent rate limits for all users and cannot offer custom rate limits individually.

For more information, please refer to the Upstox API Rate Limiting Documentation. Understanding these rules will help you adjust your API usage to avoid such issues in the future.

Thank you for understanding.