Skip to main content
POST
/
api
/
enrichment
/
email
Find Work Email
curl --request POST \
  --url https://api.blitz-api.ai/api/enrichment/email \
  --header 'Content-Type: application/json' \
  --header 'x-api-key: <api-key>' \
  --data '
{
  "linkedin_profile_url": "https://www.linkedin.com/in/antoine-blitz-5581b7373"
}
'
{
  "found": true,
  "email": "[email protected]"
}

Authorizations

x-api-key
string
header
required

Your Blitz API Key.

Body

application/json
linkedin_profile_url
string<uri>
required

The public LinkedIn profile URL (e.g., https://www.linkedin.com/in/username).

Response

OK - Email Found

found
boolean
required

Indicates if an email was found.

email
string

The verified business email.