YouTube Music Video Scraper 🎵 avatar

YouTube Music Video Scraper 🎵

Try for free

2 hours trial then $19.99/month - No credit card required now

Go to Store
YouTube Music Video Scraper 🎵

YouTube Music Video Scraper 🎵

easyapi/youtube-music-video-scraper
Try for free

2 hours trial then $19.99/month - No credit card required now

Extract video information from YouTube Music search results including titles, views, duration, channel details, and thumbnails. Perfect for music data analysis, content monitoring, and market research.

Developer
Maintained by Community

Actor Metrics

  • 2 monthly users

  • No reviews yet

  • No bookmarks yet

  • >99% runs succeeded

  • Created in Feb 2025

  • Modified 8 days ago

Powerful scraper that extracts comprehensive video information from YouTube Music search results. Get detailed data about music videos, including titles, views, duration, channel information, and more.

🎯 Use Cases

  • Music trend analysis and research
  • Content monitoring and tracking
  • Artist performance analytics
  • Market research for music industry
  • Playlist and content curation
  • Competitive analysis

✨ Features

  • 🔍 Search-based data extraction
  • 📊 Detailed video metrics (views, duration)
  • 📱 High-quality thumbnail URLs
  • 🎨 Channel information and links
  • ⚡ Fast and efficient processing
  • 🛡️ Built-in anti-blocking measures
  • 🔄 Automatic pagination handling

🔢 Output Data Structure

For each video, you'll get:

  • Video title
  • Video ID and URL
  • Thumbnail images (multiple resolutions)
  • Video duration
  • View count
  • Channel details (name, ID, URL)
  • Timestamp of data collection

💡 Input Parameters

  • keywords: Array of search terms to scrape
  • maxItems: Maximum number of results to collect

📝 Notes

  • Respects YouTube Music's terms of service
  • Results may vary based on regional availability
  • Rate limiting measures are implemented

Input Example

A full explanation of an input example in JSON.

1{
2    "keywords": [
3        "u2"
4    ],
5    "maxItems": 70
6}

Output sample

The results will be wrapped into a dataset which you can always find in the Storage tab. Here's an excerpt from the data you'd get if you apply the input parameters above:

And here is the same data but in JSON. You can choose in which format to download your data: JSON, JSONL, Excel spreadsheet, HTML table, CSV, or XML.

1[
2    {
3        "keyword": "u2",
4        "data": {
5            "title": "U2 Greatest Hits Full Album Live Best Of U2 U2 Best Songs",
6            "videoId": "sE1B7_3H6lo",
7            "thumbnails": [
8                {
9                    "url": "https://i.ytimg.com/vi/sE1B7_3H6lo/sddefault.jpg?sqp=-oaymwEWCJADEOEBIAQqCghqEJQEGHgg6AJIWg&rs=AMzJL3nG34OaM3qFetpOqT6mQR6JOtr_CA",
10                    "width": 400,
11                    "height": 225
12                }
13            ],
14            "duration": "2:04:07",
15            "views": "106K views",
16            "channel": {
17                "name": "Rock Music",
18                "id": "UC7hQKANZ31lMxu3cp_3FDqQ",
19                "url": "https://music.youtube.com/channel/UC7hQKANZ31lMxu3cp_3FDqQ"
20            },
21            "url": "https://music.youtube.com/watch?v=sE1B7_3H6lo"
22        },
23        "scrapedAt": "2025-02-09T12:28:50.152Z"
24    },
25    ...
26]