Get list of video from a youtube channel

Phate picture Phate · Nov 4, 2012 · Viewed 11.1k times · Source

I'm using these apis https://developers.google.com/youtube/ and I can't figure out how, given a youtube channel address, get the video list with related infos (single video url and title, at least)

Answer

E962 picture E962 · Jan 21, 2020

I know this is no longer relevant, but for anyone here in 2020, youll need a youtube v3 api key

What you can use is

https://www.googleapis.com/youtube/v3/search?key=[API_KEY]&channelId=[CHANNEL_ID]&part=snippet,id&order=date&maxResults=50

you can remove snippet and it will not give the names and other information of all of the videos. ID gives the video id

send a get request to the URL