When making this curl request from postman -
curl --location 'https://api-v2.upstox.com/historical-candle/NSE_EQ%7CINE040A01034/day/2024-01-21/2018-01-21' \
--header 'authority: api-v2.upstox.com' \
--header 'accept: application/json' \
--header 'api-version: 2.0' \
--header 'Cookie: __cf_bm=unEYKsP16vnsFS_Et6u2D0FPA6Mu6xvAnaSJc0zYQf8-1705835242-1-AVD+2PSHJ0CgfYQQSsg9pWVbW6y/Qvwnuz1osa1BFtB/jZviurXl86FUFfybvYkrN763DA2l460OQ0MyM5Yszfw=; _cfuvid=VLDlxD99yyNvwK_7Zil88GDQR6MqhHZjYJynlouJ_9I-1705835242625-0-604800000'
the response does not contain the data for 20th Jan 2024.
But when i am making a call for data till 20th Jan, I do get the data. here is the curl
curl --location 'https://api-v2.upstox.com/historical-candle/NSE_EQ%7CINE040A01034/day/2024-01-20/2018-01-21' \
--header 'authority: api-v2.upstox.com' \
--header 'accept: application/json' \
--header 'api-version: 2.0' \
--header 'Cookie: __cf_bm=unEYKsP16vnsFS_Et6u2D0FPA6Mu6xvAnaSJc0zYQf8-1705835242-1-AVD+2PSHJ0CgfYQQSsg9pWVbW6y/Qvwnuz1osa1BFtB/jZviurXl86FUFfybvYkrN763DA2l460OQ0MyM5Yszfw=; _cfuvid=VLDlxD99yyNvwK_7Zil88GDQR6MqhHZjYJynlouJ_9I-1705835242625-0-604800000'
Here are the response ScreenShots for the same.