Youtube API to get the most watched video of the day

  • Is there a way to get the most watched YouTube video for a specific day?
  • Is there an API for it?
  • Is there some source that gives you videos?
+3


source to share


1 answer


Yes, they don't have statistics on a specific day, but they have a working viewCount. This way you can use the API information in

https://developers.google.com/youtube/v3/docs/search/list

      

do something like



https://www.googleapis.com/youtube/v3/search?part=snippet&order=viewCount&publishedAfter=2014-10-29T00%3A00%3A00Z&publishedBefore=2014-10-31T00%3A00%3A00Z&key={YOUR_API_KEY}

      

Maybe this will help?

+7


source







All Articles