Option Chain has empty market_data and option_greeks

{'expiry': '2024-07-04',
  'strike_price': 25500.0,
  'underlying_key': 'NSE_INDEX|Nifty 50',
  'underlying_spot_price': 23868.8,
  'call_options': {'instrument_key': 'NSE_FO|69034',
   'market_data': {},
   'option_greeks': {}},
  'put_options': {'instrument_key': 'NSE_FO|69035',
   'market_data': {},
   'option_greeks': {}}},
 {'expiry': '2024-07-04',
  'strike_price': 25550.0,
  'underlying_key': 'NSE_INDEX|Nifty 50',
  'underlying_spot_price': 23868.8,
  'call_options': {'instrument_key': 'NSE_FO|69036',
   'market_data': {},
   'option_greeks': {}},
  'put_options': {'instrument_key': 'NSE_FO|69037',
   'market_data': {},
   'option_greeks': {}}},
 {'expiry': '2024-07-04',
  'strike_price': 25600.0,
  'underlying_key': 'NSE_INDEX|Nifty 50',
  'underlying_spot_price': 23868.8,
  'call_options': {'instrument_key': 'NSE_FO|69038',
   'market_data': {},
   'option_greeks': {}},
  'put_options': {'instrument_key': 'NSE_FO|69043',
   'market_data': {},
   'option_greeks': {}}}]
​

Some of the option strikes have empty market_data and Option_greeks. Can you fix this please?

The instrument key you are using corresponds to NIFTY 25550 CE 04 JUL 24. It appears there were no trades taking place for this contract at the time you accessed the API, which is the reason you are receiving an empty response.

Thank you.