YouTube API Streaming Stream

Is there any YouTube API that allows external apps to search for a keyword / brand name in all comments on YouTube videos and send them to some kind of URL? In addition, the pull method is excellent if the proposed idea of ​​push does not exist.

So, I would like to know if my brand was mentioned in any video commentary on YouTube, similar to what Twitter allows with user / site streams.

+4
source share
2 answers

The YouTube API (v2.0) defines comments as a property of a video object. Details here:

https://developers.google.com/youtube/2.0/developers_guide_protocol_comments?hl=en#Retrieve_comments

Therefore, to search for every YouTube comment, you need to go through the entire collection of videos. If you try to do something like this, it makes sense to confirm your concept by first focusing on the channels or categories that are most important to your brand. Details of feed and categories here:

https://developers.google.com/youtube/2.0/developers_guide_protocol_video_feeds https://developers.google.com/youtube/2.0/developers_guide_protocol_category_keyword_browsing

+2
source

No, there is nothing like this existing youtube api (neither V2 nor V3)

+1
source

All Articles