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.

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.

SecuritybasicAuth
Request
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
200

The server successfully processed the request

400

Incorrect Request. The request did not match the expected format

401

Authentication Error

post/email/validate
Request samples
application/json

Request the validation of an email address with a typo

{
  • "address": "johndoe@hotmai.com"
}
Response samples
application/json

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"
}