# Scrape YouTube Stats for Chart-Topping Singles

**Use case:** 

Get YouTube metadata and stats for chart-topping singles: view count, likes, channel, duration, upload date, and thumbnails. No API key needed.

## Input

```json
{
  "urls": [
    "https://www.youtube.com/watch?v=kffacxfA7G4",
    "https://www.youtube.com/watch?v=60ItHLz5WEA",
    "https://www.youtube.com/watch?v=uelHwf8o7_U",
    "https://www.youtube.com/watch?v=hLQl3WQQoQ0",
    "https://www.youtube.com/watch?v=YQHsXMglC9A"
  ],
  "format": "metadata",
  "subtitles": false,
  "maxVideos": 5
}
```

## Output

```json
{
  "title": {
    "label": "Title",
    "format": "text"
  },
  "channel": {
    "label": "Channel",
    "format": "text"
  },
  "viewCount": {
    "label": "Views",
    "format": "number"
  },
  "likeCount": {
    "label": "Likes",
    "format": "number"
  },
  "duration": {
    "label": "Duration (s)",
    "format": "number"
  },
  "uploadDate": {
    "label": "Uploaded",
    "format": "text"
  },
  "platform": {
    "label": "Platform",
    "format": "text"
  },
  "url": {
    "label": "URL",
    "format": "link"
  }
}
```

## About this Actor

This example demonstrates how to use [YouTube Scraper — Video Metadata, Stats & More (yt-dlp)](https://apify.com/nexgendata/yt-dlp-video-tools) with a specific input configuration. Visit the [Actor detail page](https://apify.com/nexgendata/yt-dlp-video-tools) to learn more, explore other use cases, and run it yourself.