POST
/
api
/
linkedin
/
email_finder
/
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": "jkennedy@platformscience.com",
    "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"
  }
]

Use Case:

Quickly find email addresses for outreach to decision-makers.

Authorizations

Authorization
string
header
required

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

Body

application/json · object[]

The body is of type object[].

Response

200 - application/json

Successful response with email details

The response is of type object[].