Any Website

Email & Contact Extractor for Any Website

Crawls any website and extracts contact details — validated email addresses, phone numbers in international and domestic formats, and categorised social media profiles across Facebook, X, LinkedIn, Instagram, YouTube and TikTok.

Run on Apify2,424 userson Apify, measured 2026-08-24

What it extracts

Data not currently verified. The output schema for this Actor is not published in our source repository. See the Apify listing for the authoritative version.

Input parameters

Generated from the Actor’s input schema — the same fields the Apify console shows.

ParameterTypeRequiredDescription
urlsarrayRequiredList of website URLs to extract emails from. Can be a single URL or multiple URLs.

API access

Run this Actor from your own code over the Apify API.

Inputjson
{
  "urls": [
    "https://www.newtondentalassociates.com"
  ]
}
REST — run and get resultsbash
curl -X POST \
  "https://api.apify.com/v2/acts/logical_scrapers~extract-email-from-any-website/run-sync-get-dataset-items?token=YOUR_API_TOKEN" \
  -H "Content-Type: application/json" \
  -d '{"urls":["https://www.newtondentalassociates.com"]}'
JavaScript — apify-clientjavascript
import { ApifyClient } from 'apify-client'

const client = new ApifyClient({ token: 'YOUR_API_TOKEN' })

const run = await client.actor('logical_scrapers~extract-email-from-any-website').call({
  "urls": [
    "https://www.newtondentalassociates.com"
  ]
})

const { items } = await client.dataset(run.defaultDatasetId).listItems()
console.log(items)
Python — apify-clientpython
from apify_client import ApifyClient

client = ApifyClient("YOUR_API_TOKEN")

run = client.actor("logical_scrapers~extract-email-from-any-website").call(run_input={
    "urls": [
        "https://www.newtondentalassociates.com",
    ],
})

for item in client.dataset(run["defaultDatasetId"]).iterate_items():
    print(item)

Runs are executed on Apify. Create an API token in your Apify account, then call the Actor over REST or with the official client for your language. The same input object works in the Apify console, so you can test interactively before automating.

Use cases

Lead generation

Turn a list of company domains into a contact list with emails, phones and social profiles.

Outreach list building

Gather every reachable channel for a set of businesses before a campaign, not just one address.

Competitive research

Map a competitor’s social presence and public contact surface across platforms.

CRM enrichment

Fill in missing contact fields on existing account records from their own websites.

Pricing

Data not currently verified. This Actor's pricing model is not declared in our source repository.

Current rates are published on the Apify listing and can change, so they are not duplicated here. See pricing on Apify

Reliability

99.4% run success rate

Measured across all public Goldmine Actors on Apify, 2026-08-24. This is an account-level figure, not a per-Actor benchmark — per-Actor speed and completeness benchmarks are not yet published. Source.

Limitations

What this Actor does not do, so you can tell before you run it whether it fits.

  • Extracts only contact details a site publishes publicly. It does not guess or pattern-generate addresses, so sites that hide contact details behind a form return nothing.
  • Email validity is checked by format and filtering rules — it is not an SMTP deliverability check.
  • JavaScript-rendered pages are supported, but heavier pages take longer per URL.
  • Coverage depends on how the site structures its contact information; the crawler prioritises contact-style pages.

Frequently asked questions

Does it work on JavaScript-heavy sites?

Yes. It renders JavaScript where needed so content that loads client-side is still reachable.

Does it guess email addresses?

No. It only returns addresses actually published on the site. Nothing is inferred from name-and-domain patterns.

Can I run many sites at once?

Yes — pass an array of URLs. Concurrency is configurable, so you can trade speed against politeness.

Used for

Workflows this Actor is part of, and the other scrapers it chains with.

Field and input tables are generated from this Actor's published schemas. Usage figures measured 2026-08-24 from the Apify listing.