# YouTube Channel Subscriber and Profile Data Scraper

**Use case:** 

Collect subscriber counts and profile details from YouTube channels. Get structured data for channels like @mkbhd and @MrBeast.

## Input

```json
{
  "channelInputs": [
    "@mkbhd",
    "@MrBeast",
    "https://www.youtube.com/@NASA"
  ],
  "separateChannelRecords": true,
  "includeChannelVideos": false,
  "includeChannelShorts": false,
  "maxChannelVideos": 10,
  "maxChannelShorts": 10,
  "channelDateRangeSortBy": "latest",
  "channelDateRangeDate": ""
}
```

## Output

```json
{
  "type": {
    "label": "Type"
  },
  "name": {
    "label": "Name"
  },
  "handle": {
    "label": "Handle"
  },
  "subscriberCount": {
    "label": "Subscriber count"
  },
  "videoCountText": {
    "label": "Video count text"
  },
  "description": {
    "label": "Description"
  },
  "country": {
    "label": "Country"
  },
  "url": {
    "label": "Url"
  }
}
```

## About this Actor

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