API REST – Validate MailBox (1.0)

Download OpenAPI specification:Download

DANAConnect's ValidateMailbox API is an online email validation service, that will use artificial intelligence to aid organizations eliminate invalid addresses from their email lists, identify spam domains, avoid bounces, and improve load capacity.

Authentication

basicAuth

The API uses the same credential system as DANAConnect. Login data consist of a username concatenated with an '@' followed by the company code; Example: apiuser@yourcompanycode

Security Scheme Type HTTP
HTTP Authorization Scheme basic

Validate Mailbox

Operations involved in validating emails

Validates an email

This service will validate an email and give valuable information such as if it is an spam email, temporary email, a personal email, etc.

Authorizations:
Request Body schema: application/json

JSON with the data required to validate an email and get information about it

address
required
string <email> non-empty

Email address

Responses

Request samples

Content type
application/json
Example

Request the validation of an email address with a typo

{
  • "address": "johndoe@hotmai.com"
}

Response samples

Content type
application/json
Example

Successful Response without any warnings

{
  • "address": "demo@danaconnect.com",
  • "account": "demo",
  • "domain": "danaconnect.com",
  • "status": "valid",
  • "sub_status": "",
  • "disposable": false,
  • "toxic": false,
  • "free_email": false,
  • "role_based": false,
  • "did_you_mean": "",
  • "processed_at": "2020-07-07 18:39:23",
  • "request_id": "90",
  • "request_status": "completed"
}