# Youtube Channel Details Scraper(With Email) (`b2b_lead_generation/youtube-channel-details-scraper-with-email`) Actor

YouTube Channel Details Scraper (With Email) is a powerful automation tool designed to extract detailed YouTube channel information along with publicly available business email addresses for lead generation, outreach, and market research.

- **URL**: https://apify.com/b2b\_lead\_generation/youtube-channel-details-scraper-with-email.md
- **Developed by:** [B2B Lead Generation](https://apify.com/b2b_lead_generation) (community)
- **Categories:** Lead generation, Automation, Developer tools
- **Stats:** 2 total users, 1 monthly users, 0.0% runs succeeded, NaN bookmarks
- **User rating**: No ratings yet

## Pricing

from $69.90 / 1,000 results

This Actor is paid per event. You are not charged for the Apify platform usage, but only a fixed price for specific events.
Since this Actor supports Apify Store discounts, the price gets lower the higher subscription plan you have.

Learn more: https://docs.apify.com/platform/actors/running/actors-in-store#pay-per-event

## What's an Apify Actor?

Actors are a software tools running on the Apify platform, for all kinds of web data extraction and automation use cases.
In Batch mode, an Actor accepts a well-defined JSON input, performs an action which can take anything from a few seconds to a few hours,
and optionally produces a well-defined JSON output, datasets with results, or files in key-value store.
In Standby mode, an Actor provides a web server which can be used as a website, API, or an MCP server.
Actors are written with capital "A".

## How to integrate an Actor?

If asked about integration, you help developers integrate Actors into their projects.
You adapt to their stack and deliver integrations that are safe, well-documented, and production-ready.
The best way to integrate Actors is as follows.

In JavaScript/TypeScript projects, use official [JavaScript/TypeScript client](https://docs.apify.com/api/client/js.md):

```bash
npm install apify-client
```

In Python projects, use official [Python client library](https://docs.apify.com/api/client/python.md):

```bash
pip install apify-client
```

In shell scripts, use [Apify CLI](https://docs.apify.com/cli/docs.md):

````bash
# MacOS / Linux
curl -fsSL https://apify.com/install-cli.sh | bash
# Windows
irm https://apify.com/install-cli.ps1 | iex
```bash

In AI frameworks, you might use the [Apify MCP server](https://docs.apify.com/platform/integrations/mcp.md).

If your project is in a different language, use the [REST API](https://docs.apify.com/api/v2.md).

For usage examples, see the [API](#api) section below.

For more details, see Apify documentation as [Markdown index](https://docs.apify.com/llms.txt) and [Markdown full-text](https://docs.apify.com/llms-full.txt).


# README

## YouTube Email Finder

Find the contact email behind any YouTube channel — instantly and at scale.

Submit one or multiple YouTube channels by handle or URL. The actor creates a job, processes it asynchronously, and returns a **Job ID** you can use to retrieve results at any time via the [lead24.email](https://lead24.email) platform.

---

### What it does

1. You provide YouTube channel handles or URLs
2. The actor submits them and returns a **Job ID**
3. Our team processes the job and finds the email
4. You poll with the Job ID to retrieve results — via this actor or the API

---

### Input

The actor accepts two modes depending on what you provide.

#### Mode 1 — Submit channels (get a Job ID)

| Field | Type | Description |
|---|---|---|
| `channel_handles` | array | One or more channel handles. With or without `@`. e.g. `MrBeast`, `@PewDiePie` |
| `channel_urls` | array | One or more full YouTube channel URLs. e.g. `https://youtube.com/@mkbhd` |

You can use both fields at the same time. Each channel gets its own row in the results.

**Example input:**
```json
{
  "channel_handles": ["MrBeast", "@PewDiePie"],
  "channel_urls": ["https://youtube.com/@mkbhd"]
}
````

**Example output:**

```json
{
  "job_id": "550e8400-e29b-41d4-a716-446655440000",
  "total": 3,
  "channels": [
    { "handle": "@MrBeast",   "url": "https://youtube.com/@MrBeast" },
    { "handle": "@PewDiePie", "url": "https://youtube.com/@PewDiePie" },
    { "handle": "@mkbhd",     "url": "https://youtube.com/@mkbhd" }
  ],
  "message": "Job submitted. Each channel is a separate row. Use job_id to poll results."
}
```

***

#### Mode 2 — Poll for results (retrieve emails)

| Field | Type | Description |
|---|---|---|
| `job_id` | string | The Job ID returned from a previous run |

**Example input:**

```json
{
  "job_id": "550e8400-e29b-41d4-a716-446655440000"
}
```

**Example output:**

```json
{
  "job_id": "550e8400-e29b-41d4-a716-446655440000",
  "status": "complete",
  "channels": [
    {
      "channel_name": "@MrBeast",
      "channel_handle": "@MrBeast",
      "email": "contact@mrbeast.com",
      "status": "complete"
    }
  ]
}
```

***

### Job statuses

| Status | Meaning |
|---|---|
| `pending` | Job received, email not found yet |
| `complete` | Email has been found and is ready |
| `not_found` | Job ID does not exist |

***

### Tracking your job

You can track the live status of any job without running the actor again.

Visit:

```
https://lead24.email/status/<your-job-id>
```

You'll see a real-time status page showing each channel and whether the email has been found.

***

### Retrieving results via API

You can also retrieve results directly via the REST API:

```
GET https://lead24.email/api/job/<job-id>
```

**Required header:**

```
X-API-Key: your-api-key
```

**Or as a query param:**

```
https://lead24.email/api/job/<job-id>?api_key=your-api-key
```

Contact us at [lead24.email](https://lead24.email) to get your API key.

***

### Tips

- **Save your Job ID** — you'll need it to retrieve results. It's shown in the actor output and dataset after every run.
- **Handles work with or without `@`** — `MrBeast` and `@MrBeast` are treated the same.
- **Bulk submissions** — add as many channels as you need in a single run. Each channel gets its own result row.
- **Async processing** — emails are not returned instantly. Submit your job, save the Job ID, and poll later.
- **No duplicate results** — each channel in a batch is tracked separately, even if submitted under the same Job ID.

***

### Example workflow

**Step 1 — Submit channels:**

```json
{
  "channel_handles": ["MrBeast", "Veritasium", "MKBHD"]
}
```

→ Save the returned `job_id`

**Step 2 — Wait for processing**

Track live at `https://lead24.email/status/<job-id>`

**Step 3 — Retrieve results:**

```json
{
  "job_id": "your-job-id-here"
}
```

→ Get emails for all channels

***

### About lead24.email

[lead24.email](https://lead24.email) is the platform powering this actor. It handles job processing, result storage, and provides a live tracking dashboard and REST API for retrieving results programmatically.

***

### Support

For API access, bulk pricing, or support — visit [lead24.email](https://lead24.email).

# Actor input Schema

## `channel_urls` (type: `array`):

Add one or more full YouTube channel URLs. e.g. https://youtube.com/@MrBeast

## `channel_handles` (type: `array`):

Add one or more channel handles or names. With or without @. e.g. MrBeast or @MrBeast

## `job_id` (type: `string`):

Pass a previously returned job\_id to check if the email has been found.

## Actor input object example

```json
{
  "channel_urls": [
    "https://youtube.com/@MrBeast",
    "https://youtube.com/@PewDiePie"
  ],
  "channel_handles": [
    "MrBeast",
    "@PewDiePie",
    "veritasium"
  ],
  "job_id": "550e8400-e29b-41d4-a716-446655440000"
}
```

# API

You can run this Actor programmatically using our API. Below are code examples in JavaScript, Python, and CLI, as well as the OpenAPI specification and MCP server setup.

## JavaScript example

```javascript
import { ApifyClient } from 'apify-client';

// Initialize the ApifyClient with your Apify API token
// Replace the '<YOUR_API_TOKEN>' with your token
const client = new ApifyClient({
    token: '<YOUR_API_TOKEN>',
});

// Prepare Actor input
const input = {};

// Run the Actor and wait for it to finish
const run = await client.actor("b2b_lead_generation/youtube-channel-details-scraper-with-email").call(input);

// Fetch and print Actor results from the run's dataset (if any)
console.log('Results from dataset');
console.log(`💾 Check your data here: https://console.apify.com/storage/datasets/${run.defaultDatasetId}`);
const { items } = await client.dataset(run.defaultDatasetId).listItems();
items.forEach((item) => {
    console.dir(item);
});

// 📚 Want to learn more 📖? Go to → https://docs.apify.com/api/client/js/docs

```

## Python example

```python
from apify_client import ApifyClient

# Initialize the ApifyClient with your Apify API token
# Replace '<YOUR_API_TOKEN>' with your token.
client = ApifyClient("<YOUR_API_TOKEN>")

# Prepare the Actor input
run_input = {}

# Run the Actor and wait for it to finish
run = client.actor("b2b_lead_generation/youtube-channel-details-scraper-with-email").call(run_input=run_input)

# Fetch and print Actor results from the run's dataset (if there are any)
print("💾 Check your data here: https://console.apify.com/storage/datasets/" + run["defaultDatasetId"])
for item in client.dataset(run["defaultDatasetId"]).iterate_items():
    print(item)

# 📚 Want to learn more 📖? Go to → https://docs.apify.com/api/client/python/docs/quick-start

```

## CLI example

```bash
echo '{}' |
apify call b2b_lead_generation/youtube-channel-details-scraper-with-email --silent --output-dataset

```

## MCP server setup

```json
{
    "mcpServers": {
        "apify": {
            "command": "npx",
            "args": [
                "mcp-remote",
                "https://mcp.apify.com/?tools=b2b_lead_generation/youtube-channel-details-scraper-with-email",
                "--header",
                "Authorization: Bearer <YOUR_API_TOKEN>"
            ]
        }
    }
}

```

## OpenAPI specification

```json
{
    "openapi": "3.0.1",
    "info": {
        "title": "Youtube Channel Details Scraper(With Email)",
        "description": "YouTube Channel Details Scraper (With Email) is a powerful automation tool designed to extract detailed YouTube channel information along with publicly available business email addresses for lead generation, outreach, and market research.",
        "version": "0.0",
        "x-build-id": "NwWlNuRXUdIBKz65Y"
    },
    "servers": [
        {
            "url": "https://api.apify.com/v2"
        }
    ],
    "paths": {
        "/acts/b2b_lead_generation~youtube-channel-details-scraper-with-email/run-sync-get-dataset-items": {
            "post": {
                "operationId": "run-sync-get-dataset-items-b2b_lead_generation-youtube-channel-details-scraper-with-email",
                "x-openai-isConsequential": false,
                "summary": "Executes an Actor, waits for its completion, and returns Actor's dataset items in response.",
                "tags": [
                    "Run Actor"
                ],
                "requestBody": {
                    "required": true,
                    "content": {
                        "application/json": {
                            "schema": {
                                "$ref": "#/components/schemas/inputSchema"
                            }
                        }
                    }
                },
                "parameters": [
                    {
                        "name": "token",
                        "in": "query",
                        "required": true,
                        "schema": {
                            "type": "string"
                        },
                        "description": "Enter your Apify token here"
                    }
                ],
                "responses": {
                    "200": {
                        "description": "OK"
                    }
                }
            }
        },
        "/acts/b2b_lead_generation~youtube-channel-details-scraper-with-email/runs": {
            "post": {
                "operationId": "runs-sync-b2b_lead_generation-youtube-channel-details-scraper-with-email",
                "x-openai-isConsequential": false,
                "summary": "Executes an Actor and returns information about the initiated run in response.",
                "tags": [
                    "Run Actor"
                ],
                "requestBody": {
                    "required": true,
                    "content": {
                        "application/json": {
                            "schema": {
                                "$ref": "#/components/schemas/inputSchema"
                            }
                        }
                    }
                },
                "parameters": [
                    {
                        "name": "token",
                        "in": "query",
                        "required": true,
                        "schema": {
                            "type": "string"
                        },
                        "description": "Enter your Apify token here"
                    }
                ],
                "responses": {
                    "200": {
                        "description": "OK",
                        "content": {
                            "application/json": {
                                "schema": {
                                    "$ref": "#/components/schemas/runsResponseSchema"
                                }
                            }
                        }
                    }
                }
            }
        },
        "/acts/b2b_lead_generation~youtube-channel-details-scraper-with-email/run-sync": {
            "post": {
                "operationId": "run-sync-b2b_lead_generation-youtube-channel-details-scraper-with-email",
                "x-openai-isConsequential": false,
                "summary": "Executes an Actor, waits for completion, and returns the OUTPUT from Key-value store in response.",
                "tags": [
                    "Run Actor"
                ],
                "requestBody": {
                    "required": true,
                    "content": {
                        "application/json": {
                            "schema": {
                                "$ref": "#/components/schemas/inputSchema"
                            }
                        }
                    }
                },
                "parameters": [
                    {
                        "name": "token",
                        "in": "query",
                        "required": true,
                        "schema": {
                            "type": "string"
                        },
                        "description": "Enter your Apify token here"
                    }
                ],
                "responses": {
                    "200": {
                        "description": "OK"
                    }
                }
            }
        }
    },
    "components": {
        "schemas": {
            "inputSchema": {
                "type": "object",
                "properties": {
                    "channel_urls": {
                        "title": "YouTube URLs",
                        "type": "array",
                        "description": "Add one or more full YouTube channel URLs. e.g. https://youtube.com/@MrBeast",
                        "items": {
                            "type": "string"
                        }
                    },
                    "channel_handles": {
                        "title": "Channel Handles / Names",
                        "type": "array",
                        "description": "Add one or more channel handles or names. With or without @. e.g. MrBeast or @MrBeast",
                        "items": {
                            "type": "string"
                        }
                    },
                    "job_id": {
                        "title": "Job ID (poll for result)",
                        "type": "string",
                        "description": "Pass a previously returned job_id to check if the email has been found."
                    }
                }
            },
            "runsResponseSchema": {
                "type": "object",
                "properties": {
                    "data": {
                        "type": "object",
                        "properties": {
                            "id": {
                                "type": "string"
                            },
                            "actId": {
                                "type": "string"
                            },
                            "userId": {
                                "type": "string"
                            },
                            "startedAt": {
                                "type": "string",
                                "format": "date-time",
                                "example": "2025-01-08T00:00:00.000Z"
                            },
                            "finishedAt": {
                                "type": "string",
                                "format": "date-time",
                                "example": "2025-01-08T00:00:00.000Z"
                            },
                            "status": {
                                "type": "string",
                                "example": "READY"
                            },
                            "meta": {
                                "type": "object",
                                "properties": {
                                    "origin": {
                                        "type": "string",
                                        "example": "API"
                                    },
                                    "userAgent": {
                                        "type": "string"
                                    }
                                }
                            },
                            "stats": {
                                "type": "object",
                                "properties": {
                                    "inputBodyLen": {
                                        "type": "integer",
                                        "example": 2000
                                    },
                                    "rebootCount": {
                                        "type": "integer",
                                        "example": 0
                                    },
                                    "restartCount": {
                                        "type": "integer",
                                        "example": 0
                                    },
                                    "resurrectCount": {
                                        "type": "integer",
                                        "example": 0
                                    },
                                    "computeUnits": {
                                        "type": "integer",
                                        "example": 0
                                    }
                                }
                            },
                            "options": {
                                "type": "object",
                                "properties": {
                                    "build": {
                                        "type": "string",
                                        "example": "latest"
                                    },
                                    "timeoutSecs": {
                                        "type": "integer",
                                        "example": 300
                                    },
                                    "memoryMbytes": {
                                        "type": "integer",
                                        "example": 1024
                                    },
                                    "diskMbytes": {
                                        "type": "integer",
                                        "example": 2048
                                    }
                                }
                            },
                            "buildId": {
                                "type": "string"
                            },
                            "defaultKeyValueStoreId": {
                                "type": "string"
                            },
                            "defaultDatasetId": {
                                "type": "string"
                            },
                            "defaultRequestQueueId": {
                                "type": "string"
                            },
                            "buildNumber": {
                                "type": "string",
                                "example": "1.0.0"
                            },
                            "containerUrl": {
                                "type": "string"
                            },
                            "usage": {
                                "type": "object",
                                "properties": {
                                    "ACTOR_COMPUTE_UNITS": {
                                        "type": "integer",
                                        "example": 0
                                    },
                                    "DATASET_READS": {
                                        "type": "integer",
                                        "example": 0
                                    },
                                    "DATASET_WRITES": {
                                        "type": "integer",
                                        "example": 0
                                    },
                                    "KEY_VALUE_STORE_READS": {
                                        "type": "integer",
                                        "example": 0
                                    },
                                    "KEY_VALUE_STORE_WRITES": {
                                        "type": "integer",
                                        "example": 1
                                    },
                                    "KEY_VALUE_STORE_LISTS": {
                                        "type": "integer",
                                        "example": 0
                                    },
                                    "REQUEST_QUEUE_READS": {
                                        "type": "integer",
                                        "example": 0
                                    },
                                    "REQUEST_QUEUE_WRITES": {
                                        "type": "integer",
                                        "example": 0
                                    },
                                    "DATA_TRANSFER_INTERNAL_GBYTES": {
                                        "type": "integer",
                                        "example": 0
                                    },
                                    "DATA_TRANSFER_EXTERNAL_GBYTES": {
                                        "type": "integer",
                                        "example": 0
                                    },
                                    "PROXY_RESIDENTIAL_TRANSFER_GBYTES": {
                                        "type": "integer",
                                        "example": 0
                                    },
                                    "PROXY_SERPS": {
                                        "type": "integer",
                                        "example": 0
                                    }
                                }
                            },
                            "usageTotalUsd": {
                                "type": "number",
                                "example": 0.00005
                            },
                            "usageUsd": {
                                "type": "object",
                                "properties": {
                                    "ACTOR_COMPUTE_UNITS": {
                                        "type": "integer",
                                        "example": 0
                                    },
                                    "DATASET_READS": {
                                        "type": "integer",
                                        "example": 0
                                    },
                                    "DATASET_WRITES": {
                                        "type": "integer",
                                        "example": 0
                                    },
                                    "KEY_VALUE_STORE_READS": {
                                        "type": "integer",
                                        "example": 0
                                    },
                                    "KEY_VALUE_STORE_WRITES": {
                                        "type": "number",
                                        "example": 0.00005
                                    },
                                    "KEY_VALUE_STORE_LISTS": {
                                        "type": "integer",
                                        "example": 0
                                    },
                                    "REQUEST_QUEUE_READS": {
                                        "type": "integer",
                                        "example": 0
                                    },
                                    "REQUEST_QUEUE_WRITES": {
                                        "type": "integer",
                                        "example": 0
                                    },
                                    "DATA_TRANSFER_INTERNAL_GBYTES": {
                                        "type": "integer",
                                        "example": 0
                                    },
                                    "DATA_TRANSFER_EXTERNAL_GBYTES": {
                                        "type": "integer",
                                        "example": 0
                                    },
                                    "PROXY_RESIDENTIAL_TRANSFER_GBYTES": {
                                        "type": "integer",
                                        "example": 0
                                    },
                                    "PROXY_SERPS": {
                                        "type": "integer",
                                        "example": 0
                                    }
                                }
                            }
                        }
                    }
                }
            }
        }
    }
}
```
