List All Videos On A Youtube Channel 【UHD HD】

If you have over 500 videos, you may need to export in subsets by filtering specific date ranges. 3. Generate a Video URL List (General Use)

const videos = document.querySelectorAll('#video-title-link'); let videoList = []; videos.forEach((video) => videoList.push( title: video.getAttribute('title'), url: 'https://youtube.com' + video.getAttribute('href') ); ); console.table(videoList); Use code with caution. list all videos on a youtube channel