YouTube Video Statistics Scraper 📊 avatar

YouTube Video Statistics Scraper 📊

Try for free

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

Go to Store
YouTube Video Statistics Scraper 📊

YouTube Video Statistics Scraper 📊

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

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

Extract comprehensive YouTube video statistics and metadata instantly! Get views, likes, comments, descriptions, tags, thumbnails, and more. Perfect for content creators, marketers, and researchers tracking video performance metrics. 🎥📊✨

Developer
Maintained by Community

Actor Metrics

  • 1 Monthly user

  • No reviews yet

  • 1 bookmark

  • >99% runs succeeded

  • Created in Mar 2025

  • Modified 5 days ago

🎯 Purpose

This actor helps you extract comprehensive statistics and metadata from YouTube videos. It's perfect for content creators, marketers, and researchers who need detailed insights about YouTube videos.

✨ Features

  • 🎥 Extracts complete video metadata
  • 📈 Gets real-time view counts, likes, and comments
  • 👤 Retrieves channel information
  • 🏷️ Collects video tags and categories
  • 🖼️ Provides all thumbnail URLs
  • 📝 Captures full video descriptions
  • ⏰ Includes publishing timestamps
  • 🌍 Supports multiple video URLs processing

🔢 Output Data

For each YouTube video URL, the actor extracts:

  • Channel ID and title
  • Video title and description
  • View count, likes, and comments
  • Publishing date and time
  • All available thumbnail versions
  • Video tags and category
  • Default language setting

💡 Use Cases

  • 📊 Track video performance metrics
  • 🔍 Competitive analysis
  • 📈 Content strategy research
  • 🎯 Audience engagement monitoring
  • 📱 Social media marketing insights

💪 Benefits

  • Fast and reliable data extraction
  • Clean, structured JSON output
  • Supports batch processing of multiple videos
  • Regular updates to maintain compatibility
  • Respects YouTube's terms of service

🔧 Input Configuration

Simply provide:

  1. List of YouTube video URLs
  2. Optional maximum items limit
  3. Optional proxy configuration

📋 Output Format

Results are stored in JSON format, containing all video statistics and metadata. Each video generates a detailed record with engagement metrics, metadata, and thumbnail information.

🚀 Getting Started

  1. Input your YouTube video URL(s)
  2. Set optional parameters if needed
  3. Run the actor and get structured data

📝 Note

The actor uses public data only and respects YouTube's terms of service.

Input Example

A full explanation of an input example in JSON.

1{
2    "youtubeVideoUrls": [
3        "https://www.youtube.com/watch?v=HV23VDFWC3o"
4    ]
5}

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        "youtubeVideoUrl": "https://www.youtube.com/watch?v=HV23VDFWC3o",
4        "channelId": "UCCrGfO9A8eLdSsB4bWbMhTg",
5        "channelTitle": "Boys Playtime",
6        "videoTitle": "6 Dinosaur Punch Box | T-Rex Mosasaurus Velociraptor Blue",
7        "views": "933,276",
8        "likes": "2,093",
9        "comments": "0",
10        "publishedAt": "2024-04-01T09:00:24Z",
11        "description": "6 Dinosaur Punch Box | T-Rex Mosasaurus Velociraptor Blue\n\nSubscribe to Boy's Playtime for more SURPRISES!\nhttps://www.youtube.com/c/BoysPlaytime\n\n#dinosaurs #tyrannosaurus #mosasaurus",
12        "thumbnails": [
13            {
14                "type": "default",
15                "url": "https://i.ytimg.com/vi/HV23VDFWC3o/default.jpg"
16            },
17            {
18                "type": "medium",
19                "url": "https://i.ytimg.com/vi/HV23VDFWC3o/mqdefault.jpg"
20            },
21            {
22                "type": "high",
23                "url": "https://i.ytimg.com/vi/HV23VDFWC3o/hqdefault.jpg"
24            },
25            {
26                "type": "standard",
27                "url": "https://i.ytimg.com/vi/HV23VDFWC3o/sddefault.jpg"
28            },
29            {
30                "type": "maxres",
31                "url": "https://i.ytimg.com/vi/HV23VDFWC3o/maxresdefault.jpg"
32            }
33        ],
34        "tags": [
35            "dinosaurs",
36            "dinos",
37            "jurassic world",
38            "tyrannosaurus",
39            "rex",
40            "indominus",
41            "mosasaurus",
42            "Dilophosaurus",
43            "Velociraptor",
44            "jurassic world Squishy",
45            "punch box",
46            "dinosaur box",
47            "공룡",
48            "펀치 박스",
49            "서프라아즈 박스",
50            "공룡 박스",
51            "티라노사우루스",
52            "모사사우루스"
53        ],
54        "category": "Entertainment",
55        "defaultLanguage": "0"
56    },
57    ...
58]