๐Ÿฏ Youtube Channel Scraper (Pay Per Result) avatar
๐Ÿฏ Youtube Channel Scraper (Pay Per Result)
Try for free

Pay $0.50 for 1,000 videos

View all Actors
๐Ÿฏ Youtube Channel Scraper (Pay Per Result)

๐Ÿฏ Youtube Channel Scraper (Pay Per Result)

apidojo/youtube-channel-scraper
Try for free

Pay $0.50 for 1,000 videos

The perfect tool for exceptional YouTube channel video retrieval tool. Experience unparalleled quickness and thoroughness in searching and directly obtaining videos from channels. Furthermore, it's incredibly affordable at only $0.50 per 1000 videos!

The code examples below show how to run the Actor and get its results. To run the code, you need to have an Apify account. Replace <YOUR_API_TOKEN> in the code with your API token, which you can find under Settings > Integrations in Apify Console. Learn more

1# Set API token
2API_TOKEN=<YOUR_API_TOKEN>
3
4# Prepare Actor input
5cat > input.json <<'EOF'
6{
7  "startUrls": [
8    "https://www.youtube.com/channel/UCsXVk37bltHxD1rDPwtNM8Q",
9    "https://www.youtube.com/channel/UCNIuvl7V8zACPpTmmNIqP2A"
10  ],
11  "youtubeHandles": [
12    "@MrBeast",
13    "@babishculinaryuniverse"
14  ],
15  "keywords": [
16    "pixel art"
17  ],
18  "sort": "r",
19  "maxItems": 1000,
20  "customMapFunction": "(object) => { return {...object} }"
21}
22EOF
23
24# Run the Actor using an HTTP API
25# See the full API reference at https://docs.apify.com/api/v2
26curl "https://api.apify.com/v2/acts/apidojo~youtube-channel-scraper/runs?token=$API_TOKEN" \
27  -X POST \
28  -d @input.json \
29  -H 'Content-Type: application/json'
Developer
Maintained by Community
Actor metrics
  • 21 monthly users
  • 5 stars
  • 74.6% runs succeeded
  • 1.4 hours response time
  • Created in Dec 2023
  • Modified about 12 hours ago