Skip to main content
POST
/
api
/
linkedin
/
email_finder
Generate valid email
curl --request POST \
  --url https://api.generect.com/api/linkedin/email_finder/ \
  --header 'Authorization: <api-key>' \
  --header 'Content-Type: application/json' \
  --data '
[
  {
    "first_name": "Jack",
    "last_name": "Kennedy",
    "domain": "platformscience.com"
  }
]
'
[
  {
    "first_name": "Jack",
    "last_name": "Kennedy",
    "domain": "platformscience.com",
    "result": "valid",
    "catch_all": true,
    "error": null,
    "valid_email": "[email protected]",
    "source": "name2email",
    "email_format": "flast",
    "mx_domain": "pphosted.com",
    "logs": "get mx_record: pphosted.com\ncheck outlook,gmail,onedrive,o365,o365_get_creds\n",
    "exist": "yes"
  }
]
Important: All generated emails are automatically validated and ready for use. No additional email validation is required - the emails returned by this endpoint are already verified for deliverability.

Use Case:

Quickly find email addresses for outreach to decision-makers.

Authorizations

Authorization
string
header
required

Use 'Token ' as the value

Body

application/json
first_name
string
last_name
string
domain
string
Example:
[
{
"first_name": "Jack",
"last_name": "Kennedy",
"domain": "platformscience.com"
}
]

Response

200 - application/json

Successful response with email details

first_name
string
last_name
string
domain
string
result
string
catch_all
string
error
string | null
valid_email
string
source
string
email_format
string
mx_domain
string
logs
string
exist
string