# YouTube Creator Profiles & Contact Links

**Use case:** 

Turn a list of channels or @handles into profile rows: audience size, country, social links and business-email availability.

## Input

```json
{
  "searchKeywords": [
    "apify scraper"
  ],
  "resultsType": "channels",
  "channelsFrom": "both",
  "startUrls": [
    "@mkbhd",
    "@veritasium",
    "@kurzgesagt"
  ],
  "includeChannelProfile": true,
  "channelTabs": [
    "Videos"
  ],
  "sortVideosBy": "Latest",
  "maxResults": 0,
  "includeTranscript": false,
  "transcriptLanguage": "en",
  "transcriptFormat": "text",
  "onlyWithTranscript": false
}
```

## Output

```json
{
  "images.avatarUrl": {
    "label": "Avatar URL",
    "format": "string"
  },
  "channel.title": {
    "label": "Channel name",
    "format": "string"
  },
  "channel.handle": {
    "label": "Handle",
    "format": "string"
  },
  "channel.url": {
    "label": "Channel URL",
    "format": "string"
  },
  "channel.isVerified": {
    "label": "Verified",
    "format": "boolean"
  },
  "metrics.subscribers": {
    "label": "Subscribers",
    "format": "integer"
  },
  "metrics.videos": {
    "label": "Videos",
    "format": "integer"
  },
  "metrics.totalViews": {
    "label": "Total views",
    "format": "integer"
  },
  "profile.country": {
    "label": "Country",
    "format": "string"
  },
  "profile.joinedDate": {
    "label": "Joined date",
    "format": "string"
  },
  "profile.keywords": {
    "label": "Keywords",
    "format": "array"
  },
  "contacts.hasBusinessEmail": {
    "label": "Has business email",
    "format": "boolean"
  },
  "contacts.emails": {
    "label": "Emails",
    "format": "array"
  },
  "contacts.socialLinks": {
    "label": "Social links",
    "format": "object"
  },
  "contacts.externalLinks": {
    "label": "External links",
    "format": "array"
  },
  "profile.rssUrl": {
    "label": "RSS URL",
    "format": "string"
  },
  "discoverySource.value": {
    "label": "Source value",
    "format": "string"
  },
  "discoverySource.discoverySurface": {
    "label": "Surface",
    "format": "string"
  },
  "discoverySource.rank": {
    "label": "Rank",
    "format": "integer"
  },
  "sourceVideo.title": {
    "label": "🎬 Source video",
    "format": "text"
  },
  "sourceVideo.url": {
    "label": "🔗 Source video URL",
    "format": "link"
  },
  "channel.id": {
    "label": "Channel ID",
    "format": "string"
  },
  "channel.description": {
    "label": "Description",
    "format": "string"
  }
}
```

## About this Actor

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


## How to integrate an Actor?

This Task's input is already configured above. Use it as-is rather than inventing a new one.

Do not guess an integration path. Every one of them is in the agent quickstart at https://apify.com/agents.md: the Apify MCP server, Agent Skills with the Apify CLI, the JavaScript and Python clients, the REST API, and the account-free path for an agent with no human to sign in. It also carries the rule on stating cost before the first paid run.

For full API examples (JavaScript, Python, CLI, MCP, OpenAPI), see this Task's Actor page: https://apify.com/dz_omar/youtube-scraper-pro.md

Each client library has reference documentation the quickstart does not restate: [JavaScript/TypeScript](https://docs.apify.com/api/client/js/docs.md) (`npm install apify-client`) and [Python](https://docs.apify.com/api/client/python/docs.md) (`pip install apify-client`).
