J. Joe
J. Joe

Reputation: 381

How to get all list youtube channel by API?

How to get all list youtube channel by API? Popular, categories...

ex:

  1. Music
  2. Sport
  3. News
  4. BostonEnglish
  5. etc

Upvotes: 0

Views: 1288

Answers (1)

ReyAnthonyRenacia
ReyAnthonyRenacia

Reputation: 17651

Im not sure if there's a category for Boston English. But, for the general categories you've mentioned like Music, News, Sports, there's definitely a way to do that. Use this list as video category guide.

Try this on your browser:

https://www.googleapis.com/youtube/v3/search?part=snippet&type=video&videoCategoryId=17&maxResults=50&key=SERVER_API_KEY_HERE

It will show you a list of channels under Sports.

Just change the videoCategoryId=17 part depending on which category you like. So if it's music, use videoCategoryId=10 and so on. maxResults=50 is set to 50, meaning it will display 50 results per page

Upvotes: 1

Related Questions