Free Email Verifier  - Verify Email Address avatar

Free Email Verifier - Verify Email Address

Pricing

$2.00 / 1,000 email verifieds

Go to Apify Store
Free Email Verifier  - Verify Email Address

Free Email Verifier - Verify Email Address

Verify a single email address or bulk email list using our email checker.

Pricing

$2.00 / 1,000 email verifieds

Rating

0.0

(0)

Developer

SR

SR

Maintained by Community

Actor stats

2

Bookmarked

46

Total users

2

Monthly active users

9 days ago

Last modified

Share

Email Verify - Apify Actor

Professional email verification tool. Validates email deliverability, detects disposable/catch-all/privacy aliases, checks mail server validity, and provides 0-100 risk scoring.

Verification Checks

Email Deliverability

CheckDescription
DeliverableWhether the email address can receive mail
Valid Mail ServerWhether MX records exist for the domain, resolved directly over DNS
Catch-AllWhether the domain accepts mail for any address
DisposableWhether the domain is a temporary/throwaway provider, checked against two published blocklists (~57.000 domains) plus a live second opinion for the ones the lists miss
Privacy AliasWhether the email is a privacy relay (e.g., Apple Hide My Email)
Email ForwarderWhether the address forwards to another mailbox

Provider Detection

CheckDescription
Email ProviderIdentified mail provider (Gmail, Outlook, etc.)
Free ProviderWhether using a free email service

Risk Assessment

FieldDescription
Risk Score0-100 score (lower is better)
Statussafe / risky / unsafe / invalid / undeliverable

Security Intelligence (when available)

CheckDescription
Credentials LeakedWhether credentials appeared in known leaks
Data BreachWhether email appeared in data breaches
SuspiciousWhether activity appears suspicious
SpoofableWhether the domain can be spoofed
SPF StrictWhether SPF is strictly configured
DMARC EnforcedWhether DMARC policy is enforced

Input

FieldTypeRequiredDescription
emailsstring[]NoEmail addresses to verify (max 10 combined)
domainsstring[]NoDomains to verify (max 10 combined)

Output

Each email produces a result with:

{
"email": "chang@constrive.com",
"success": true,
"status": "safe",
"deliverable": true,
"valid_mail_server": true,
"catch_all": false,
"disposable": false,
"privacy_alias": false,
"email_forwarder": false,
"email_provider": "Outlook",
"risk_score": 10,
"processing_time_seconds": 1.5
}

Status Values

StatusMeaning
safeLow risk (score 0-25), deliverable, valid server
riskyModerate risk (score 26-60), deliverable
unsafeHigh risk (score 61-100), deliverable
undeliverableValid server but confirmed not accepting mail
invalidThe domain has no mail server. This is a positive finding, not a failed check
unknownThe check could not be completed. Nothing was established, so no verdict is claimed

On unknown. Any field may come back null, and null means "not established" rather than "no". This matters: an earlier build defaulted valid_mail_server to false when a source was unreachable, which made every address, gmail.com included, come back as invalid. A null now says so honestly. sources_checked on each row lists which checks actually answered.

Risk Score Scale

RangeMeaning
0-25Low risk — safe to send
26-60Moderate — proceed with caution
61-100High risk — likely undeliverable or suspicious

What this actor does not do

It makes no SMTP connection, so it cannot confirm that a specific mailbox accepts mail. deliverable and catch_all are therefore usually null, which is the honest answer rather than a guess. What it does establish is whether the domain can receive mail at all, whether it is a disposable provider, and how its SPF and DMARC are configured.

Error Result

{
"email": "bad@test.com",
"success": false,
"error": "Description of what went wrong"
}