Youtube Channel Email Finder avatar
Youtube Channel Email Finder
Deprecated
View all Actors
This Actor is deprecated

This Actor is unavailable because the developer has decided to deprecate it. Would you like to try a similar Actor instead?

See alternative Actors
Youtube Channel Email Finder

Youtube Channel Email Finder

timwhite/youtube-channel-data-scraper

Scrape & download all the details about a channel from the YouTube channel's "About" page. Get emails, phone numbers, locations, & social media profiles including TikTok, Instagram, Twitter, and YouTube. Download structured data in JSON, CSV, XML, Excel, and HTML.

The code examples below show how to run the Actor and get its results. To run the code, you need to have an Apify account. Replace <YOUR_API_TOKEN> in the code with your API token, which you can find under Settings > Integrations in Apify Console. Learn mode

Node.js

Python

curl

1import { ApifyClient } from 'apify-client';
2
3// Initialize the ApifyClient with your Apify API token
4const client = new ApifyClient({
5    token: '<YOUR_API_TOKEN>',
6});
7
8// Prepare Actor input
9const input = {
10    "keywords": [
11        "reactjs"
12    ],
13    "limit": 5,
14    "maxRequestsPerCrawl": 100,
15    "startUrls": [
16        {
17            "url": "https://www.youtube.com/c/SydneySerena/"
18        }
19    ],
20    "handlePageTimeoutSecs": 30,
21    "maxRequestRetries": 3,
22    "minConcurrency": 1,
23    "maxConcurrency": 100,
24    "proxyConfiguration": {
25        "useApifyProxy": true
26    }
27};
28
29(async () => {
30    // Run the Actor and wait for it to finish
31    const run = await client.actor("timwhite/youtube-channel-data-scraper").call(input);
32
33    // Fetch and print Actor results from the run's dataset (if any)
34    console.log('Results from dataset');
35    const { items } = await client.dataset(run.defaultDatasetId).listItems();
36    items.forEach((item) => {
37        console.dir(item);
38    });
39})();
Developer
Maintained by Community