The base API URL for the API is https://validator.doltics.com/
Validate Email #
Validating an email is done via the base url https://validator.doltics.com/api/validate/email with a request parameter of email
. The response is a plain string that comes as JSON. Response headers are as follows: Connection keep-alive Content-Type application/json Date Fri, 22 Dec 2023 13:37:46 GMT Server nginx/1.18.0 (Ubuntu) Transfer-Encoding chunked X-Rate-Limit-Remaining 99
Each requests are rate limited at 100 requests per second.
Data Collected #
No email data is saved or collected during the validation period. Validation is only done against the email domain for the queried email.
Sample API Request #
https://validator.doltics.com/api/validate/email?email=myemail@mydomain.com
API Responses #
The following are the API responses returned:
Response | Description |
---|---|
valid | The address seems to be fine |
wrongSchema | The address has some schema errors like a missing at sign |
notRegisted | The domain is currently not registed |
noMxRecord | The domain has no MX record (so the domain cannot receive mails) |
typoDetected | A typographic error was detected |
unknown | The status of the address is unknown |
banned | The mail address check is banned |
pending | The mail address check is pending |