From: €0.019 + VAT
Verify the validity and characteristics of an email address, with more detailed data than the Start service, such as deliverability rate and unsubscription frequency, in just a few seconds and on a global level.
Email Verification Advanced is the service that allows you to check the validity of any email address and access in-depth information such as fraud score based on reputation, possible use of temporary (disposable) and SPAM-risk emails, deliverability rate, and much more.
The service is available worldwide and in just a few seconds.
On Openapi you can also request the Start service, designed for those who need less detailed information such as email status, SPF and DMARC configurations, recognition of temporary emails, and verification of antispam systems.
POST /email-advanced
To use the service, you must make a POST request to the /email-advanced endpoint by passing the email address to be verified as a parameter.
POST/email-advanced/[email protected]
The response usually takes a few seconds, but if you want to receive a notification when all response data is available, you can set up a callback.
{
"callback": {
"url": "https://your-server.site/email-callback",
"custom": {
"orderId": "email-check-456"
}
}
}
NOTE: During the callback configuration phase, it is mandatory to insert a valid URL capable of handling POST requests. You can also populate the 'custom' field with any additional data you want to include in the callback response.
POST /email-advanced
The response includes over 25 details, such as:
"data": {
"email": "[email protected]",
"spfDetails": {
"domain": "example.com",
"dnsServerUsed": "1.1.1.1",
"queriedDnsForTxt": false,
"selectedSpfRecord": "v=spf1 include:spf.mailtrusted.org include:emsd1.com include:mailgun.org -all",
"formalValidity": {
"startsWithVspf1": true,
"hasValidAllMechanism": false,
"dnsMechanismLookupCount": 10,
"maxDnsMechanismLookups": 10,
"voidLookupCount": 0,
"maxVoidLookups": 2,
"hasRedirectModifier": false,
"redirectDomain": null,
"syntaxErrors": [
"DNS lookup limit at 'include:_spf2.mailgun.org'."
],
"warnings": [],
"explanationDomain": null
},
"summary": {
"totalDnsMechanismLookupsUsed": 10,
"finalProcessingResult": "PERMERROR",
"evaluationLog": []
}
},
"dmarcDetails": {
"recordFound": true,
"record": "v=DMARC1; p=none",
"dnsQueryDomain": "_dmarc.example.com",
"dnsServerUsed": "8.8.8.8",
"policy": "none",
"subdomainPolicy": null,
"alignmentDkim": "r",
"alignmentSpf": "r",
"percentage": 100,
"reportingUrisAggregate": [],
"reportingUrisFailure": [],
"failureOptions": [],
"errors": [],
"warnings": []
},
"createdAt": "2025-07-29T12:11:17+00:00",
"updatedAt": "2025-07-29T12:11:17+00:00",
"state": "DONE",
"message": "Success.",
"success": true,
"valid": false,
"disposable": false,
"smtpScore": 1,
"overallScore": 1,
"firstName": "Unknown",
"generic": false,
"common": false,
"dnsValid": true,
"honeypot": false,
"deliverability": "low",
"frequentComplainer": false,
"spamTrapScore": "none",
"catchAll": false,
"timedOut": false,
"suspect": false,
"recentAbuse": true,
"fraudScore": 91,
"suggestedDomain": "N/A",
"leaked": false,
"sanitizedEmail": "[email protected]",
"identityData": "-",
"domainAge": {
"human": "23 years ago",
"timestamp": 1017170444,
"iso": "2002-03-26T14:20:44-05:00"
},
"firstSeen": {
"human": "just now",
"timestamp": 1753778540,
"iso": "2025-07-29T04:42:20-04:00"
},
"riskyTld": false,
"spfRecord": false,
"dmarcRecord": true,
"mxRecords": [
"aspmx.l.google.com",
"alt3.aspmx.l.google.com",
"alt4.aspmx.l.google.com",
"alt1.aspmx.l.google.com",
"alt2.aspmx.l.google.com"
],
"aRecords": [
"172.67.70.113",
"104.26.10.156",
"104.26.11.156"
],
"errors": [],
"id": "6888ba65e1e23f3575051bd3"
}
If it cannot be processed within the first 10 seconds, a partial response is returned, with status NEW and an ID to manage the request asynchronously. Partial data includes the email domain, DNS server, technical validity of the SPF record, and DMARC configuration details.
"data": {
"email": "[email protected]",
"spfDetails": {
"domain": "example.com",
"dnsServerUsed": "1.1.1.1",
"queriedDnsForTxt": true,
"selectedSpfRecord": "v=spf1 include:spf.mailtrusted.org include:emsd1.com include:mailgun.org -all",
"formalValidity": {
"startsWithVspf1": true,
"hasValidAllMechanism": false,
"dnsMechanismLookupCount": 10,
"maxDnsMechanismLookups": 10,
"voidLookupCount": 0,
"maxVoidLookups": 2,
"hasRedirectModifier": false,
"redirectDomain": null,
"syntaxErrors": [
"DNS lookup limit at 'include:_spf2.mailgun.org'."
],
"warnings": [],
"explanationDomain": null
},
"summary": {
"totalDnsMechanismLookupsUsed": 10,
"finalProcessingResult": "PERMERROR",
"evaluationLog": []
}
},
"dmarcDetails": {
"recordFound": true,
"record": "v=DMARC1; p=none",
"dnsQueryDomain": "_dmarc.example.com",
"dnsServerUsed": "8.8.8.8",
"policy": "none",
"subdomainPolicy": null,
"alignmentDkim": "r",
"alignmentSpf": "r",
"percentage": 100,
"reportingUrisAggregate": [],
"reportingUrisFailure": [],
"failureOptions": [],
"errors": [],
"warnings": []
},
"createdAt": "2025-07-25T12:55:59+00:00",
"updatedAt": "2025-07-25T12:56:02+00:00",
"state": "NEW",
"message": "Success.",
"id": "68837edf827e938c9a0f53e5"
}
In this case, a second (free) request will be required to obtain the requested data.
GET/email-advanced
The endpoint to check the status of the request is /email-advanced and the method used is GET. If the callback has been implemented, you will be notified when your request has been completed and your data is available.
This is an example request with the ID obtained from the previous POST call:
GET/email-advanced/77e9e92216065fa37f3c9842
The response provides the same data already mentioned above, i.e., those accessible through the POST request.
The Email Verification Advanced service is designed for companies operating in sectors such as digital marketing, e-commerce, fintech, cybersecurity, and lead generation, where contact quality and risk prevention are key elements.
It is especially useful for:
Given the speed of the response and the richness of the data provided, Advanced Email Verification is a fundamental tool for any organization that values data quality, process security, and operational optimization.
Do you need help?
Haven't found the answer you're looking for?
Fill in all the details, we will get back to you as soon as possible!
Email Verification Advanced is a service that allows you to check the validity and reliability of an email address in just a few seconds.
It provides over 25 data points, including fraud score, detection of temporary (disposable) emails, deliverability rate, recent exposure to data breaches, the likelihood of the address being a honeypot or SPAM trap, domain validity, and much more.
Email Verification Start offers information such as email status (valid, risky, etc.), SPF/DMARC configurations, detection of disposable emails, antispam system identification, error correction suggestions, and other useful data. However, it provides a more limited data set compared to the Advanced version.
Email Verification Advanced, on the other hand, returns much deeper insights, including the fraud score, deliverability rate, possible SPAM flags, detailed domain info, SPF/DMARC and MX records, whether the email has been exposed in data breaches, and more.
The fraud score is an indicator that estimates the likelihood that an email address is linked to risky or fraudulent behavior.
It is calculated based on the address’s reputation and recent behavior within the IPQualityScore network (for example, a score of 75 means the email is suspicious but not necessarily fraudulent.)
Yes, Email Verification Advanced detects whether an address has been leaked, i.e., found in compromised databases following known cyberattacks (e.g., on Amazon, Google, etc.).
The service returns details such as:
Domain validity via DNS
SPF and DMARC configurations
MX records (authorized mail servers)
A record (IP address linked to domain)
Catch-all domain detection
Temporary SMTP server errors
Typo correction suggestions
Yes, the tool provides insights on:
Recent exposures to data breaches
Whether it tends to unsubscribe from marketing lists
If it often marks emails as SPAM
Whether it's associated with a reputable provider or a suspicious domain
Yes, Email Verification Advanced estimates the domain’s age and the first detection date of the email address.
This service is ideal for companies in sectors such as Digital marketing, E-commerce, Fintech, Cybersecurity, Lead generation, where contact quality and risk management are critical.
It helps to:
Quickly assess the reliability of email addresses by identifying suspicious domains, typos, disposable or compromised addresses
Detect potential threats like honeypots, spam traps, high fraud scores, and emails frequently unsubscribing
Support onboarding and KYC processes, through data like owner info, domain validity, SPF/DMARC configs, and domain age
Optimize marketing campaigns, by focusing on active and trustworthy contacts
The service is available worldwide.
The service is delivered within seconds.
The service starts at €0.019 per request when using an annual subscription.
For one-time (non-subscription) requests, the cost is €0.049 per request.
You can send as many requests as needed, but the API has a per-minute processing limit. If you exceed that limit, a partial response will be returned with the status "NEW" and a unique ID. You can then retrieve the completed result asynchronously using the GET method.
NOTE: Each monthly subscription plan has a daily request cap:
1,000 / 5,000 / 10,000 requests per month → max 200 requests/day
20,000 requests/month → max 700 requests/day
50,000 requests/month → no daily limit