Sandbox api for historical intraday OHLCV is not working as expected

I’m trying to get intraday OHCLV data at 1 min time frame from sandbox api

Request:
curl --request POST \ --url {SANDBOX_BASE_URL}v2/charts/intraday \ --header ‘Accept: application/json’ \ --header ‘Content-Type: application/json’ \ --header ‘access-token: XXX’ \ --data ‘{ “securityId”: “3063”, “exchangeSegment”: “NSE_EQ”, “instrument”: “EQUITY”, “interval”: “1”, “fromDate”: “2025-12-16”, “toDate”: “2025-12-16” }’

Response:
{ “open”: [ 133.59, 133.12, 133.31, 133.03, 132.73, 132.16, 131.61, 132, 130.68 ], “high”: [ 133.75, 133.43, 133.63, 133.48, 132.92, 132.18, 132.15, 132.4, 130.79 ], “low”: [ 132.22, 132.6, 133.03, 132.59, 132, 130.07, 131.5, 129.68, 128.97 ], “close”: [ 133.14, 133.17, 133.03, 132.87, 132.16, 131.81, 131.85, 130.74, 130.19 ], “volume”: [ 64469, 25186, 13194, 18734, 16654, 84227, 23281, 82623, 53548 ], “timestamp”: [ 1738813500, 1738817100, 1738820700, 1738824300, 1738827900, 1738831500, 1738835100, 1738899900, 1738903500 ] }

I’m getting same response for any stock and any timeframe.

Please help.