How to get previous day OHLC using OHLC quote V3 url?

As described in OHLC quote V3 api doc that using ohlc quote v3 url one can get both the current day ohlc and previous day ohlc. but when I try with the url I only get current day ohlc. So, I want to know is there any specialized url to get previous day ohlc or it is just given in the doc and actually not working/implemented from back end.

Hi @gaurav, Market Quote APIs are primarily intended for intraday trading sessions. Hence, you’ll receive prev_ohlc data for the 1-minute and 30-minute intervals, but not for the daily interval.

To retrieve the previous day’s OHLC data, you can use the Historical Candles API V3.

Thanks