Google provide a free web services for NSC and BOM data.
https://finance.google.com/finance?q=NSE:KELLTONTEC&output=json
For google web service NSE data- https://finance.google.com/finance?q=NSE:KELLTONTEC&output=json
For google web service BSE (BOM) data- https://finance.google.com/finance?q=BSE:KELLTONTEC&output=json
In PHP
$bse = file_get_contents("https://finance.google.com/finance?q=BSE:KELLTONTEC&output=json");
$split_slash= str_replace('//','',$bse );
$split_data = stripslashes(html_entity_decode($split_slash));
$data = json_decode($split_data);
$equity = $data[0]->l;
print_r($data[0]->l);
Its return BSE data