Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

The question is very simple. How to get number of video views with YouTube API?

enter image description here

The task is simple but I would like to use that query on large number of videos very often. Is there any way to call their Youtube API and get it? (something like facebook http://api.facebook.com/restserver.php?method=links.getStats&urls=developers.facebook.com)

share|improve this question
You want to use only JavaScript to do this? – B7ackAnge7z Jul 30 '10 at 22:42
anything that works vary well. as I said, i must query on large number of videos very often. – Ante Aug 15 '10 at 12:52

4 Answers

up vote 27 down vote accepted

I think, the easiest way, is to get video info in JSON format. If you want to use JavaScript, try jQuery.getJSON()... But I prefer PHP:

<?php
$video_ID = 'your-video-ID';
$JSON = file_get_contents("https://gdata.youtube.com/feeds/api/videos/{$video_ID}?v=2&alt=json");
$JSON_Data = json_decode($JSON);
$views = $JSON_Data->{'entry'}->{'yt$statistics'}->{'viewCount'};
echo $views;
?>

Ref: Youtube API - Retrieving information about a single video

share|improve this answer
1  
Thanks, you saved me 30 mins of digging around :) – Martin Oct 10 '10 at 12:21
this apeares to be out of date tho?? all my videos view counts through this method are a good 100 or so behind what is showed on the video watch page – mdskinner Sep 27 '11 at 1:28
Youtube delays views for popular videos, there's not really much you can do about it. – Dylan Cross Feb 16 '12 at 0:37

look at yt:statistics tag. It provides viewCount, videoWatchCount, favoriteCount etc.

share|improve this answer

Here an example that I used in my TubeCount app.

I also use the fields parameter to filter the JSON result, so only the fields that I need are returned.

var fields = "fields=openSearch:totalResults,entry(title,media:group(yt:videoid),media:group(yt:duration),media:group(media:description),media:group(media:thumbnail[@yt:name='default'](@url)),yt:statistics,yt:rating,published,gd:comments(gd:feedLink(@countHint)))";

var channel = "wiibart";

$.ajax({
    url: "http://gdata.youtube.com/feeds/api/users/"+channel+"/uploads?"+fields+"&v=2&alt=json",
    success: function(data){

        var len = data.feed.entry.length;

        for(var k =0; k<len; k++){
            var yt = data.feed.entry[k];
            v.count = Number(yt.yt$statistics != undefined && yt.yt$statistics.viewCount != undefined ? yt.yt$statistics.viewCount : 0);
        }
    }
});
share|improve this answer

This probably is not what you want but you could scrap the page for the information using the following:

document.getElementsByClassName('watch-view-count')[0].innerHTML
share|improve this answer
download the whole page and then do this? hm.. – Ante Jul 29 '10 at 11:42
I agree - an API would be much more preferable... – Ryan Alberts Jul 31 '10 at 1:03
Youtube warns when the API is about to change. But it hasn't any contract with developers on the website. So this is not a good idea – FRAGA Nov 23 '11 at 18:50

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.