Need Tick Data of Symbol

bhumi
Hi,

I am using the following code to get the last price -

$response = file_get_contents("https://api.kite.trade/quote/ltp?api_key=XXXXX&access_token=XXXXX&i=NSE:INFY");
$json_array = json_decode($response);

$filledprice = "";

foreach ($json_array->data as $lpInfo) {
$filledprice = $lpInfo->last_price;
}

Now, I require tick by tick data, please guide.
Sign In or Register to comment.