# YouTube Video Data Extractor

**Use case:** 

Extract detailed YouTube video data, including titles, views, likes, and more, from provided video links for comprehensive analysis.

## Input

```json
{
  "videoUrls": [
    "https://www.youtube.com/watch?v=dQw4w9WgXcQ",
    "https://www.youtube.com/shorts/DC_8bBzC1rI"
  ],
  "proxyConfiguration": {
    "useApifyProxy": false
  }
}
```

## Output

```json
{
  "url": {
    "label": "Video URL",
    "format": "link"
  },
  "videoId": {
    "label": "Video ID",
    "format": "text"
  },
  "title": {
    "label": "Title",
    "format": "text"
  },
  "views": {
    "label": "Views",
    "format": "number"
  },
  "likes": {
    "label": "Likes",
    "format": "number"
  },
  "comments": {
    "label": "Comments",
    "format": "number"
  },
  "channelName": {
    "label": "Channel",
    "format": "text"
  },
  "datePosted": {
    "label": "Posted",
    "format": "text"
  }
}
```

## About this Actor

This example demonstrates how to use [YouTube Video Scraper](https://apify.com/clappi/youtube-video-scraper) with a specific input configuration. Visit the [Actor detail page](https://apify.com/clappi/youtube-video-scraper) to learn more, explore other use cases, and run it yourself.