This is the Jay Chou Playlist I want videos from:
https://www.youtube.com/playlist?list=PL50C17441DA8A565D
YouTube's API explorer has a playlist endpoint:
https://developers.google.com/youtube/v3/docs/playlistItems/list
This is the API call:
And here is the response:
{
"items": [
{
"snippet": {
"title": "Jay Chou - East Wind Breaks (東風破)",
"thumbnails": {
"default": {
"url": "https://i.ytimg.com/vi/kGbDymJ75PU/default.jpg",
},
},
"resourceId": {
"videoId": "kGbDymJ75PU"
}
}
},
{
"snippet": {
"title": "Jay Chou - Chrysanthemum Flower Bed (Ju Hua Tai) Sub'd",
"thumbnails": {
"default": {
"url": "https://i.ytimg.com/vi/oVPepkniuXI/default.jpg",
},
},
"resourceId": {
"videoId": "oVPepkniuXI"
}
}
}
]
}