Unable to get historical data for Live Options Series

Hello All,
I’m unable to get live series options data with historical API (since 1st Jan). I can get the latest data but not historical for the same symbol. Was able to get historical data until Dec’23

Not Working -
data = {

"symbol":"NSE:NIFTY24JAN22000CE",

"resolution":"D",

"date_format":"1",

"range_from":"2024-01-02",

"range_to":"2024-01-05",

"cont_flag":"1"

}

response = fyers.history(data=data)

print(response)

Working -
symbol={‘symbols’:‘NSE:NIFTY24JAN22000CE’}

last_price=fyers.quotes(symbol)[‘d’][0][‘v’][‘lp’]

print(last_price)

Any help or pointers would be helpful.
Thanks in advance!

faced the issue with history api while trying to get data for symbols(-EQ). Now it looks fine for me. Not sure if it is the same issue

Thanks Jimmy for your response.
Works for -EQ data, issue seems to be only with Options. Not sure about any other series

HI it is working can you check once again

Thanks for your response Pankaj
Not working for me yet; other APIs and historical data for -EQ series is working.

Issue sorted, wasnt using APIv3.
Thanks all for the help