Twitch Profile Email Finder avatar
Twitch Profile 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
Twitch Profile Email Finder

Twitch Profile Email Finder

timwhite/twitch-channel-email-finder

Find email addresses, phone numbers, & social media profiles of Twitch streamers. This actor accepts a single url or a list.

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 more

1# Set API token
2API_TOKEN=<YOUR_API_TOKEN>
3
4# Prepare Actor input
5cat > input.json <<'EOF'
6{
7  "startUrls": [
8    {
9      "url": "https://www.twitch.tv/katerino"
10    },
11    {
12      "url": "https://www.twitch.tv/monstercat"
13    },
14    {
15      "url": "https://www.twitch.tv/riotgames"
16    }
17  ],
18  "handlePageTimeoutSecs": 30,
19  "maxRequestRetries": 1,
20  "minConcurrency": 1,
21  "maxConcurrency": 100,
22  "maxRequestsPerCrawl": 10,
23  "proxyConfiguration": {
24    "useApifyProxy": true
25  }
26}
27EOF
28
29# Run the Actor using an HTTP API
30# See the full API reference at https://docs.apify.com/api/v2
31curl "https://api.apify.com/v2/acts/timwhite~twitch-channel-email-finder/runs?token=$API_TOKEN" \
32  -X POST \
33  -d @input.json \
34  -H 'Content-Type: application/json'
Developer
Maintained by Community