# YouTube Channel Keyword Search

**Use case:** 

Find YouTube channels by keyword and export channel URLs, handles, descriptions, subscriber counts, video counts, and thumbnails.

## Input

```json
{
  "keywords": [
    "web scraping",
    "data automation"
  ],
  "searchUrls": [
    {
      "url": "https://www.youtube.com/results?search_query=apify&sp=EgIQAg%253D%253D"
    }
  ],
  "maxResultsPerSearch": 25,
  "includeDetails": false,
  "proxyConfiguration": {
    "useApifyProxy": false
  }
}
```

## Output

```json
{
  "channelId": {
    "label": "Channel ID",
    "format": "text"
  },
  "title": {
    "label": "Title",
    "format": "text"
  },
  "handle": {
    "label": "Handle",
    "format": "text"
  },
  "customUrl": {
    "label": "Custom URL",
    "format": "text"
  },
  "channelUrl": {
    "label": "Channel URL",
    "format": "link"
  },
  "thumbnailUrl": {
    "label": "Thumbnail",
    "format": "image"
  },
  "subscriberCountText": {
    "label": "Subscribers (text)",
    "format": "text"
  },
  "subscriberCount": {
    "label": "Subscribers",
    "format": "number"
  },
  "videoCountText": {
    "label": "Videos (text)",
    "format": "text"
  },
  "videoCount": {
    "label": "Videos",
    "format": "number"
  },
  "description": {
    "label": "Description",
    "format": "text"
  },
  "isVerified": {
    "label": "Verified",
    "format": "boolean"
  },
  "sourceQuery": {
    "label": "Source query",
    "format": "text"
  },
  "sourceUrl": {
    "label": "Source URL",
    "format": "link"
  },
  "searchRank": {
    "label": "Search rank",
    "format": "number"
  },
  "scrapedAt": {
    "label": "Scraped at",
    "format": "date"
  }
}
```

## About this Actor

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