We can check up direcly to their inbox email address if it exist, but I'm not going to implement it publicly because it would violate the policy of the company or the email service provider. You can read more how it works from this article.
Enter list of email address below! (separated by commas, new lines, or spaces).
This endpoint returns a list of email addresses validity.
Method | Endpoint |
---|---|
POST | https://www.ditatompel.com/api/email-validator |
These parameters should be in the POST query string.
emails | string, required. Lists of email address; separated by commas or spaces. |
The response header includes the HTTP status code
and the content-type
. Clients that receive a status code other than HTTP 200
and content-type
other than application/json
must back-off.
HTTP 200 content-type: application/json
The response body includes the information of email addresses validity status, the main domain name, and an additional information why the email address is real or not. Example of result :
{ "success": 1, "status": "ok", "data": [ { "email": "[email protected]", "valid": false, "domain": "example.com", "info": "No Mail Exchange for example.com" }, { "email": "example.notvaliddoma [...]", "valid": false, "domain": null, "info": "Invalid email format" }, { "email": "[email protected]", "valid": false, "domain": "false.com", "info": "No Mail Exchange for false.com" } ] }
Loading...