Bunun için bot yazmanıza gerek yok. Youtube bu tip işlemler için api sağlıyor
Example verelim hemen
https://www.googleapis.com/youtube/v3/videos?part=statistics&id=4zyr9nqteeM&key=APIKey
Bide PHP Olarak example verelim
<?php
$JSON = file_get_contents("https://www.googleapis.com/youtube/v3/videos?part=statistics&id=videiID&key=APIKey");
$json_data = json_decode($JSON, true);
echo $json_data['items'][0]['statistics']['viewCount'];
?>