# Discover Top YouTube Influencers in Tech Niche

**Use case:** 

Streamline your influencer marketing efforts by scraping subscriber counts and video catalogs from leading YouTube channels in specific niches like tech reviews

## Input

```json
{
  "channelUrls": [
    "https://www.youtube.com/@MKBHD",
    "https://www.youtube.com/@LinusTechTips",
    "https://www.youtube.com/@AustinEvans",
    "UCkJy-D8o_jH7m7W3E9vJkXA"
  ],
  "maxVideos": 50,
  "sortVideosBy": "newest",
  "includeAbout": true,
  "includePlaylists": false,
  "maxPlaylists": 20,
  "includeShorts": false,
  "maxShorts": 20,
  "includeLiveVideos": false,
  "maxLiveVideos": 20,
  "market": "US"
}
```

## Output

```json
{
  "title": {
    "label": "Title",
    "format": "text"
  },
  "videoId": {
    "label": "Video ID",
    "format": "text"
  },
  "viewCount": {
    "label": "Views",
    "format": "number"
  },
  "duration": {
    "label": "Duration",
    "format": "text"
  },
  "publishedTimeText": {
    "label": "Published",
    "format": "text"
  },
  "url": {
    "label": "URL",
    "format": "link"
  },
  "authorMetadata.channelName": {
    "label": "Channel",
    "format": "text"
  },
  "authorMetadata.subscriberCount": {
    "label": "Subscribers",
    "format": "number"
  }
}
```

## About this Actor

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