Decision Makers Email Finder by Domain avatar

Decision Makers Email Finder by Domain

Pricing

from $25.00 / 1,000 email founds

Go to Apify Store
Decision Makers Email Finder by Domain

Decision Makers Email Finder by Domain

Input: domain name -> Get: decision makers associated with the domain. Includes business emails, first name, last name, department, job title, company name and social profile if found. Email verification is included. May occasionally output other generic company emails.

Pricing

from $25.00 / 1,000 email founds

Rating

0.0

(0)

Developer

Scalelist

Scalelist

Maintained by Community

Actor stats

0

Bookmarked

2

Total users

1

Monthly active users

a day ago

Last modified

Categories

Share

Domain Email Finder by Scalelist

Find verified business emails for any domain with full contact profiles (names, job titles, departments, seniority, and LinkedIn URLs).

You can also provide an optional company_name alongside each domain to increase matching accuracy and ensure the best enrichment results.

Powered by Scalelist — the email and phone finder trusted by over 30,000 users worldwide.


How it works

  1. You provide a list of company domains (e.g. thescalelab.com, scalelist.com) with an optional company_name, and a single limit (applies to all domains).
  2. The Actor queries the Scalelist Domain API for each domain synchronously.
  3. Every email found is validated and written as an individual row to the Apify Dataset.
  4. You are charged $0.029 per email found (email_found event) — domains with zero results cost nothing.

Input

FieldRequiredDefaultDescription
domainsList of domains to search
domains[].domainCompany domain to search, e.g. thescalelab.com
domains[].company_nameOptionalnullCompany name (e.g. The Scalelab) — improves matching accuracy
limitOptional10Maximum number of emails to return per domain (1–100, applied to all domains)

Example input

{
"domains": [
{
"domain": "thescalelab.com",
"company_name": "The Scalelab"
},
{
"domain": "scalelist.com",
"company_name": "Scalelist"
},
{
"domain": "stripe.com"
}
],
"limit": 10
}

Output

Each found email produces one row in the Apify Dataset with detailed profile information. If a domain returns no emails or fails, a single audit row is written with found: false.

FieldTypeDescription
domainstringCompany domain searched
company_namestring | nullCompany name returned by Scalelist or provided in input
emailstring | nullFound business email address (null if none found)
first_namestring | nullContact's first name
last_namestring | nullContact's last name
job_titlestring | nullContact's job title / role
departmentstring | nullDepartment (e.g. sales, support, engineering)
senioritystring | nullSeniority level (e.g. director, executive, manager)
linkedin_urlstring | nullDirect LinkedIn profile link
email_statusstringFound · catch all · Not found · Lookup failed · Charge limit reached
foundbooleantrue if an email was found
chargedbooleantrue if this email result was charged via Apify PPE

Example output row

{
"domain": "thescalelab.com",
"company_name": "The Scalelab",
"email": "arnaud@thescalelab.com",
"first_name": "Arnaud",
"last_name": "Renoux",
"job_title": "Sales Leader",
"department": "sales",
"seniority": null,
"linkedin_url": "https://www.linkedin.com/in/arnaud-renoux-129aa949",
"email_status": "catch all",
"found": true,
"charged": true
}

Error handling

SituationBehaviour
Missing domain fieldEntry is skipped with a warning; remaining domains continue
Zero emails foundOutput row written with email: null, found: false, charged: false
Rate limit (429)Exponential backoff, up to 5 automatic retries
Lookup error (4xx/5xx)Output row written with email_status: "Lookup failed", charged: false
Spend cap reachedActor cleanly stops processing further domains to prevent overspend
Actor timeoutActor stops before processing domains it cannot finish

Support