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

Documentation Index

Fetch the complete documentation index at: https://docs.blitz-api.ai/llms.txt

Use this file to discover all available pages before exploring further.

Agents & LLMs: a Markdown version of this page is available by appending .md to the URL, and the full documentation index is at llms.txt.
Cost: 1 credit per email found on Trial Plan
Free on the Unlimited Email plan ($499/mo) or above
Retrieve a verified work email address from a LinkedIn profile URL.
Response always carries found. On found: true, the verified email and a all_emails[] array are populated. On found: false, no verified email exists in our database — email will be null.

Enrichment workflow recipe

End-to-end pattern for processing a list of LinkedIn URLs into verified contact data.

Authorizations

x-api-key
string
header
required

Your Blitz API Key. Get one from https://app.blitz-api.ai

Body

application/json
person_linkedin_url
string
required
Example:

"https://www.linkedin.com/in/antoine-blitz-5581b7373"

Response

OK

The response is of type object.