VOOZH about

URL: https://apify.com/jumbled_falcon/email-phone-social-finder-website

⇱ πŸ“§Extract Emails, Socials & Contacts from Any Website✨ Β· Apify


πŸ‘ πŸ“§Extract Emails, Socials & Contacts from Any Website✨ avatar

πŸ“§Extract Emails, Socials & Contacts from Any Website✨

Pricing

from $1.00 / 1,000 website processeds

Go to Apify Store

πŸ“§Extract Emails, Socials & Contacts from Any Website✨

Instantly extract emails, social media profiles, phone numbers, and contact details from any website. Save hours of manual research and build targeted lead lists effortlessly. Handles bulk lists of 1000+ websites. Extracts from contact pages, about pages, and homepage automatically.

Pricing

from $1.00 / 1,000 website processeds

Rating

0.0

(0)

Developer

πŸ‘ Sept Solutions

Sept Solutions

Maintained by Community

Actor stats

0

Bookmarked

2

Total users

1

Monthly active users

5 days ago

Last modified

Categories

Share

Website Contact & Social Extractor

Apify Actor that extracts contact information, social media links, and key page URLs from websites. Built with Crawlee PlaywrightCrawler and migrated from a production Puppeteer extraction pipeline.

Features

  • Email extraction β€” scans visible page text and mailto: links, deduplicates and normalizes addresses
  • Phone extraction β€” matches US-style numbers in body text and tel: links, formats as (AAA) BBB-CCCC with optional +1 prefix when explicitly present
  • Social links β€” finds the first link for LinkedIn, Facebook, Instagram, Twitter/X, YouTube, TikTok, Pinterest, Snapchat, WhatsApp, Telegram, and Skype
  • Contact & about pages β€” discovers and records the first contact and about page URLs on the homepage
  • Sub-page crawling β€” follows same-origin links matching configurable keywords (default: contact, about, locations) and merges data from up to maxLinkPages sub-pages
  • Concurrency β€” processes multiple websites in parallel via Apify/Crawlee autoscaled pool
  • Anti-bot handling β€” optional stealth plugin, browser hardening, Cloudflare challenge wait, and Crawlee handleCloudflareChallenge
  • Resource optimization β€” blocks images, media, fonts, and stylesheets on the main page (safe for text/href extraction)
  • Per-URL error isolation β€” a failed URL does not stop the rest of the run

Input

FieldTypeDefaultDescription
websiteUrlsstring[](required)Websites to analyze. https:// is added automatically if missing.
maxConcurrencyinteger5Max parallel browser tabs
maxLinkPagesinteger5Max contact/about/location sub-pages per site
requestTimeoutSecsinteger30Main page navigation timeout (seconds)
stealthbooleantrueEnable stealth plugin and browser hardening
blockHeavyResourcesbooleantrueBlock images, media, fonts, stylesheets on main page
retriesinteger2Retries after first attempt (2 = up to 3 total tries)
retryDelayMsinteger2000Delay between retries (milliseconds)
finderKeywordsstring[]["contact","about","locations"]Keywords matched in sub-page link hrefs

Example input

{
"websiteUrls":[
"https://example.com",
"https://example.org"
],
"maxConcurrency":5,
"maxLinkPages":5,
"requestTimeoutSecs":30,
"stealth":true,
"blockHeavyResources":true,
"retries":2
}

Output

One dataset item per input URL.

Success example

{
"url":"https://example.com",
"title":"Example Domain",
"phones":["(555) 123-4567"],
"emails":["info@example.com"],
"linkedin":"",
"facebook":"",
"instagram":"",
"twitter":"",
"youtube":"",
"tiktok":"",
"pinterest":"",
"snapchat":"",
"whatsapp":"",
"telegram":"",
"skype":"",
"contact_page_url":"https://example.com/contact",
"about_page_url":"https://example.com/about"
}

Failure example

{
"url":"https://unreachable.example",
"error":"page.goto: Timeout 30000ms exceeded."
}

Output fields

FieldTypeDescription
urlstringInput website URL
titlestringHTML <title>
phonesstring[]US-formatted phone numbers
emailsstring[]Deduplicated emails
linkedin … skypestringFirst matching social link (empty if none)
contact_page_urlstringFirst contact page href found
about_page_urlstringFirst about page href found
errorstringPresent only when extraction failed

Usage

Apify Console

  1. Open the Actor in Apify Console.
  2. Paste your input JSON.
  3. Click Start.
  4. Download results from the Dataset tab (JSON, CSV, Excel).

Apify API

curl-X POST "https://api.apify.com/v2/acts/YOUR_USERNAME~website-contact-extractor/runs?token=YOUR_TOKEN"\
-H"Content-Type: application/json"\
-d'{"websiteUrls":["https://example.com"]}'

Apify CLI

$apify call YOUR_USERNAME/website-contact-extractor --input'{"websiteUrls":["https://example.com"]}'

Local development

Prerequisites

  • Node.js 18+
  • Apify CLI (optional, recommended)

Setup

cd backend
npminstall

Run locally

Create storage/key_value_stores/default/INPUT.json:

{
"websiteUrls":["https://example.com"],
"maxConcurrency":1,
"stealth":true
}

Then run:

$npm start

Or with Apify CLI:

$apify run -p

Results are written to storage/datasets/default/.

Apify deployment

cd backend
apify login
apify push

The Actor uses the apify/actor-node-playwright-chrome:20 Docker image defined in Dockerfile.

Actor Store description

Website Contact & Social Extractor enriches lead lists and company databases by automatically collecting emails, phone numbers, social profiles, and contact/about page URLs from any website.

Ideal for:

  • Lead generation β€” build contact lists from company websites
  • Sales enrichment β€” add phones and social links to CRM records
  • Market research β€” collect public contact data at scale
  • Due diligence β€” verify how businesses present contact information online

Runs fully in the cloud on Apify with configurable concurrency, retries, and anti-bot options.

Limitations

  • US phone bias β€” phone formatting targets US numbers; international numbers may appear unformatted
  • Same-origin sub-pages only β€” contact/about/location links on external domains are not followed
  • Static extraction β€” reads rendered DOM text and links; does not execute custom per-site scraping logic
  • Bot-protected sites β€” heavily protected sites (Cloudflare, CAPTCHA) may return partial or empty results
  • No deep crawl β€” only the homepage plus up to maxLinkPages keyword-matched sub-pages are visited
  • First-match social links β€” returns the first anchor per platform, not all profiles

Project structure

backend/
β”œβ”€β”€ .actor/ # Apify Actor definition and schemas
β”œβ”€β”€ src/
β”‚ β”œβ”€β”€ main.js # Actor entry point
β”‚ β”œβ”€β”€ crawler.js # PlaywrightCrawler setup
β”‚ β”œβ”€β”€ extractors.js # Page-level extraction
β”‚ β”œβ”€β”€ link-pages.js # Sub-page discovery and extraction
β”‚ β”œβ”€β”€ result-merger.js
β”‚ β”œβ”€β”€ browser-hooks.js
β”‚ β”œβ”€β”€ constants.js
β”‚ β”œβ”€β”€ utils.js
β”‚ └── config.js
β”œβ”€β”€ Dockerfile
β”œβ”€β”€ package.json
└── README.md

License

ISC

You might also like

Website Contact Extractor - Emails, Phones & Social Links

santhej/website-contact-extractor

Bulk-extract contact details from any list of websites: email addresses, phone numbers, and social profiles (LinkedIn, X, Facebook, Instagram, YouTube). Crawls homepage + contact/about pages. Clean JSON/CSV for lead lists & enrichment.

πŸ‘ User avatar

Santhej Kallada

6

5.0

Website Lead Extractor, Emails, Phones & Social Profiles

george.the.developer/website-contact-scraper

Extract contact information from any website. Finds emails, phone numbers, social media profiles, and contact forms automatically. Perfect for building prospect lists, lead generation, and sales outreach. Handles JavaScript rendered pages.

25

πŸ“§ Website Email Extractor β€” Bulk Contact Scraper

nexgendata/website-email-extractor

Extract emails, phone numbers & social profiles from any website. Crawls contact/about pages automatically. Hunter.io alternative for lead generation.

Website Contact & Email Extractor

bohard/website-contact-extractor

Crawl any list of websites and extract emails, phone numbers and social media profiles for lead generation.

πŸ‘ User avatar

Bohdan Shtelmakh

4

Extract Emails Contacts Socials From Any Website

scrapio/extract-emails-contacts-socials-from-any-website

βœ‰οΈ Extract emails, phones, contact pages & social profiles from any website. πŸ”Ž Lightning-fast email extractor & contact scraper for lead gen, sales outreach, and research. πŸš€ Clean, structured export to power your CRM and campaigns.

Website Email & Contact Extractor: Lead Generation Tool

scrapepilot/website-email-contact-extractor

Extract emails, phone numbers and social media links from any website. Auto-scans homepage plus contact and about pages. Returns verified leads with LinkedIn, Twitter, Instagram profiles. Perfect for B2B outreach and lead generation.

19

3.0

Website Contact Scraper

goat255/website-contact-scraper

Crawl any list of websites and extract emails, phone numbers, and social media profiles. Visits the homepage plus contact, about, and team pages, then returns one clean deduped row per domain. No login.

2

5.0