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

Pay $0.50 for 1,000 videos

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

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

apidojo/youtube-playlist-scraper
Try for free

Pay $0.50 for 1,000 videos

The ultimate solution for detailed YouTube playlist information. Enjoy unmatched speed and thoroughness in both search and direct video retrieval from playlists. Additionally, it's remarkably cost-effective at just $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/watch?v=kXYiU_JCYtU&list=PL6Lt9p1lIRZ311J9ZHuzkR5A3xesae2pk",
9    "https://www.youtube.com/watch?v=4fndeDfaWCg&list=PLGBuKfnErZlAJvz_MjNOUBNbYqLcnXZLr"
10  ],
11  "keywords": [
12    "pixel art"
13  ],
14  "sort": "r",
15  "maxItems": 1000,
16  "customMapFunction": "(object) => { return {...object} }"
17}
18EOF
19
20# Run the Actor using an HTTP API
21# See the full API reference at https://docs.apify.com/api/v2
22curl "https://api.apify.com/v2/acts/apidojo~youtube-playlist-scraper/runs?token=$API_TOKEN" \
23  -X POST \
24  -d @input.json \
25  -H 'Content-Type: application/json'
Developer
Maintained by Community
Actor metrics
  • 9 monthly users
  • 2 stars
  • 100.0% runs succeeded
  • Created in Dec 2023
  • Modified about 11 hours ago