Hi
How to get Youtube Video List on basis of below data. I want top rated videos of today in Entertainment Category
tfeedUrl = "top_rated";
tcatUrl = "_Entertainment";
ttimeUrl = "?time=today";
Thanks
Hi
How to get Youtube Video List on basis of below data. I want top rated videos of today in Entertainment Category
tfeedUrl = "top_rated";
tcatUrl = "_Entertainment";
ttimeUrl = "?time=today";
Thanks
Know the answer? Post it — somebody with the same question will find it here.
Sign in to answer this question
It is the same account you read, post and publish with — and you will come straight back to this page.
Tasadduq BurneyPosted Dec 9, 2025, 10:47 AM
Hey,
Hope you're keeping well.
YouTube no longer supports the old
top_ratedand category feed URLs you’re referencing, so you’ll need to use the YouTube Data API v3 instead. In .NET, you can callVideos.listwith parameters likechart=mostPopular,videoCategoryIdfor Entertainment (ID 24), andregionCode, then filter based onpublishedAtfor today. UseHttpClientin C# to hithttps://www.googleapis.com/youtube/v3/videoswith your API key, deserialize the JSON viaSystem.Text.Json, and bind the results to your UI. This approach is the only supported way to reliably fetch top-rated or most popular videos in a given category.Thanks and regards,
Taz