6

I need to get the video/playlists/show data from youtube.com.

Example :

Is there a way I can get the video details for the above URL using the youtube API?

Jonas
  • 121,568
  • 97
  • 310
  • 388
thewhiz01
  • 61
  • 1
  • 1
  • 2

2 Answers2

1

You need to look at the YouTube Data API. You will find there documentation about how the API can be accessed. You can also find client libraries.

You could also make the requests yourself. Here is an example URL that retrieves the latest videos from a channel :

https://www.googleapis.com/youtube/v3/search?key={your_key_here}&channelId={channel_id_here}&part=snippet,id&order=date&maxResults=20"
akshay
  • 5,811
  • 5
  • 39
  • 58