$json = json_encode($data);
for ($i = 1; $i <= 1000; $i++) {
$curl = curl_init();
curl_setopt($curl, CURLOPT_URL, 'app.gettaxi.ru/lite/new');
curl_setopt($curl, CURLOPT_RETURNTRANSFER,true);
curl_setopt($curl, CURLOPT_POST, true);
curl_setopt($curl, CURLOPT_POSTFIELDS, $json);
$out = curl_exec($curl);
curl_close($curl);
}