POST
/
api
/
linkedin
/
email_validator
/
Validate an email address
curl --request POST \
  --url https://api.generect.com/api/linkedin/email_validator/ \
  --header 'Authorization: <api-key>' \
  --header 'Content-Type: application/json' \
  --data '[
  "jkennedy@platformscience.com"
]'
[
  {
    "result": "valid",
    "catch_all": true,
    "error": null,
    "source": "name2email",
    "mx_domain": "pphosted.com",
    "exist": "yes",
    "email": "jkennedy@platformscience.com",
    "logs": [
      {
        "get mx_record": "pphosted.com"
      },
      "check outlook,gmail,onedrive,o365,o365_get_creds"
    ]
  }
]

Use Case:

Clean and verify email lists to improve campaign success rates and lower bounce rates.

Authorizations

Authorization
string
header
required

Use 'Token <api-key>' as the value

Body

application/json · string[]

The body is of type string[].

Response

200 - application/json

Successful email validation

The response is of type object[].