# YouTube Channel Data Extractor

**Use case:** 

Retrieve detailed YouTube channel data, including subscriber counts, total views, top videos, channel location, channel username and its verification status.

## Input

```json
{
  "channelUrls": [
    "https://www.youtube.com/@MrBeast",
    "https://www.youtube.com/@PewDiePie"
  ],
  "proxyConfiguration": {
    "useApifyProxy": false
  }
}
```

## Output

```json
{
  "channelName": {
    "label": "Channel Name",
    "format": "text"
  },
  "channelUsername": {
    "label": "Username",
    "format": "text"
  },
  "numberOfSubscribers": {
    "label": "Subscribers",
    "format": "number"
  },
  "channelTotalVideos": {
    "label": "Videos",
    "format": "number"
  },
  "channelTotalViews": {
    "label": "Total Views",
    "format": "number"
  },
  "channelLocation": {
    "label": "Location",
    "format": "text"
  },
  "isChannelVerified": {
    "label": "Verified",
    "format": "boolean"
  },
  "channelUrl": {
    "label": "Channel URL",
    "format": "link"
  }
}
```

## About this Actor

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