# YouTube About Page Contact Scraper

**Use case:** 

Scrape emails and linked social profiles from specific YouTube channel About pages using URLs, handles, or IDs.

## Input

```json
{
  "channels": [
    "https://www.youtube.com/@veritasium",
    "@Kurzgesagt"
  ],
  "onlyWithEmail": true,
  "maxConcurrency": 3
}
```

## Output

```json
{
  "channelName": {
    "label": "Channel",
    "format": "text"
  },
  "email": {
    "label": "Email",
    "format": "text"
  },
  "channelHandle": {
    "label": "Handle",
    "format": "text"
  },
  "channelUrl": {
    "label": "Channel URL",
    "format": "link"
  },
  "subscriberCount": {
    "label": "Subscribers",
    "format": "number"
  },
  "videoCount": {
    "label": "Videos",
    "format": "number"
  },
  "description": {
    "label": "Description",
    "format": "text"
  },
  "channelId": {
    "label": "Channel ID",
    "format": "text"
  }
}
```

## About this Actor

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