# Playlist Videos Returns a list of 100 videos from a YouTube playlist. Endpoint: GET /raw/youtube/playlist-videos Security: accessToken ## Query parameters: - `url` (string, required) YouTube url to playlist's page, i.e. https://www.youtube.com/playlist?list={playlistId} - `after` (string) Use cursor from the last page to get the next page ## Response 200 fields (application/json): - `videos_list` (object, required) - `videos_list.total` (number, required) - `videos_list.videos` (array, required) - `videos_list.videos.video_id` (string, required) - `videos_list.videos.thumbnail` (string, required) - `videos_list.videos.title` (string, required) - `videos_list.videos.time` (string) - `videos_list.videos.published_ago` (string) - `videos_list.videos.views` (number) - `videos_list.cursor` (string, required) - `success` (boolean, required)