Email Address Verification API
Accepting an invalid email address at the point of entry creates problems downstream — bounced emails, failed OTP delivery, dirty CRM data, and in some cases fraudulent signups using disposable addresses. This API validates an email address before it reaches your database.
The checks go beyond a basic syntax test. The API verifies full RFC compliance (RFC 822, RFC 2822, RFC 5321), checks that the domain has a functioning mail server configured, and flags addresses that belong to known disposable or abusive domains. Importantly, it does this without using SMTP handshake probing — a technique that causes delivery delays and can get your server flagged by receiving mail providers.
The result is a fast, clean signal you can act on at form submission time: is this address syntactically valid, deliverable, and not from a throwaway domain?
For a detailed look at the verification process and why we built it differently, read Deep dive into the real-time email address verification process.
https://api-bdc.net/data/email-verifyParameters
| Parameter | Type | Required | Description |
|---|---|---|---|
emailAddress | string | Optional | Email address to verify |
key | string | Optional | Your API key |
Responses
Sample Request
https://api-bdc.net/data/email-verify?emailAddress=support@bigdatacloud.com&key=[YOUR API KEY]Sample Response
Response Schema
Sample Response
Sample Response
Sample Response