Historical Data API returning blank response

` $url = ‘https://api.upstox.com/v2/historical-candle/NSE_INDEX|Nifty 50/day/2024-08-09/2024-07-01’;
$curl = curl_init();
curl_setopt_array($curl, array(
CURLOPT_URL => $url,
CURLOPT_RETURNTRANSFER => true,
CURLOPT_ENCODING => ‘’,
CURLOPT_MAXREDIRS => 10,
CURLOPT_TIMEOUT => 0,
CURLOPT_FOLLOWLOCATION => true,
CURLOPT_HTTP_VERSION => CURL_HTTP_VERSION_1_1,
CURLOPT_CUSTOMREQUEST => ‘GET’,
CURLOPT_HTTPHEADER => array(
‘Accept: application/json’
),
));

	echo curl_exec($curl);
	curl_close($curl);`

Its returning blank response.

@swister,

It appears that the API call to https://api.upstox.com/v2/historical-candle/NSE_INDEX|Nifty 50/day/2024-08-09/2024-07-01 is returning the candles as expected.

The problem may lie in your code around this API call. Please take a moment to review it.

Thanks!