
Youtube Channel
- newbs/youtube-channel
- Modified
- Users 42
- Runs 9.8k
- Created by
Newbs
Unlock valuable insights with our tool that extracts crucial video data such as title, description, cover image URL, video URL, author, view count, like count, comment count, and channel subscriber count. Enhance your marketing and content creation strategies with informed, data-driven decisions.
YouTube Scraper using Puppeteer
Overview
This Apify actor uses Puppeteer to scrape YouTube videos for a specified channel and number of videos. The output of the actor includes details on each video scraped.
Input
The actor takes in the following input:
channelName
(required) - The name of the channel to scrape videos from.numberOfVideos
(required) - The number of videos to scrape.
Output
The actor outputs an array of objects, where each object represents a single video. The object includes the following details for each video:
title
- The title of the video.description
- The description of the video.coverImage
- The URL of the Cover image.videoUrl
- The URL of the video.author
- The name of the author of the video.viewCount
- The number of views the video has.likeCount
- The number of likes the video has.commentCount
- The number of comments the video has.subscriberCount
- The number of subscribers the channel has.publishedAt
- The date the video was published.
Usage
To use this actor, you can set up a task on Apify and configure the input parameters as desired. Once the task is started, the actor will scrape the specified number of videos for the specified channel and output the details in the format described above.
Example Input
{ "channelName": "National Geographic", "numberOfVideos": 10 }
Example Output
[ { "title": "Video Title 1", "author": "Author Name", "description": "Video Description 1", "coverImage": "https://example.com/thumbnail-1.jpg", "videoUrl": "https://example.com/video-1.mp4", "commentCount": 12, "likeCount": 100, "viewCount": 1000, "subscriberCount": 1000000, "publishedAt": "2020-01-01T00:00:00.000Z" }, { "title": "Video Title 2", "author": "Author Name", "description": "Video Description 2", "coverImage": "https://example.com/thumbnail-2.jpg", "videoUrl": "https://example.com/video-2.mp4", "commentCount": 12, "viewCount": 2000, "likeCount": 200, "subscriberCount": 1000000, "publishedAt": "2020-01-01T00:00:00.000Z" } ]
Disclaimer
Please note that the use of this actor and any data obtained through its use is at your own risk. The developer of this actor is not responsible for any consequences resulting from the use of this actor and the data it generates. It is your responsibility to ensure that you comply with all applicable laws and regulations governing the use of such data.