We are trying to fetch the data for BSE500 (Instrument Token: 276745) for 19th November 2025, but the API is returning an empty response. Could you please check and provide the reason behind this issue?
Below please find the code which is working fine for Nifty 50 but not for BSE500.
!pip install kiteconnect
from kiteconnect import KiteConnect import pandas as pd
kite = KiteConnect() # we have entered api key and access token to login
instruments = kite.instruments()
bse500 = [x for x in instruments if x['tradingsymbol'] == 'BSE500']
Using the same source code, we were able to retrive data of 17th November and Before, but after that day we are getting such error to retrive data of 18, 19 and 20 November Data
Just FYI, I can able to retrive LTP. Only issues while fetching histrocial data from date 18th November
Please provide any update on this