# Find YouTube influencers

**Use case:** Download & archive media

Find YouTube influencers by searching topic keywords. Extract channel names, subscriber counts, view stats, and video data to build a curated creator shortlist.

## Input

```json
{
  "searchQueries": [
    "fitness workout routine",
    "home workout no equipment"
  ],
  "maxResults": 20,
  "maxResultsShorts": 5,
  "maxResultStreams": 0,
  "startUrls": [
    {
      "url": "https://www.youtube.com/watch?v=dQw4w9WgXcQ"
    }
  ],
  "downloadSubtitles": false,
  "saveSubsToKVS": false,
  "subtitlesLanguage": "en",
  "preferAutoGeneratedSubtitles": false,
  "subtitlesFormat": "srt",
  "sortingOrder": "views",
  "dateFilter": "month",
  "videoType": "video",
  "lengthFilter": "between420",
  "oldestPostDate": "2024-01-01",
  "sortVideosBy": "NEWEST"
}
```

## Output

```json
{
  "title": {
    "label": "Video Title",
    "format": "string"
  },
  "channelName": {
    "label": "Channel",
    "format": "string"
  },
  "viewCount": {
    "label": "Views",
    "format": "number"
  },
  "likes": {
    "label": "Likes",
    "format": "number"
  },
  "date": {
    "label": "Published",
    "format": "string"
  },
  "duration": {
    "label": "Duration",
    "format": "string"
  },
  "type": {
    "label": "Type",
    "format": "string"
  },
  "url": {
    "label": "Video URL",
    "format": "string"
  },
  "commentsCount": {
    "label": "Comments",
    "format": "number"
  }
}
```

## About this Actor

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