Skip to main content
Welcome to BlitzAPI! In this guide, we will perform a simple but powerful task: finding a verified professional email from a LinkedIn profile URL.
Prerequisites: You need an API Key. You can grab one from your BlitzAPI Dashboard.
1

Choose your client

BlitzAPI is a standard REST API, so you can use it with any language.We recommend using cURL to test quickly in your terminal, or Node.js/Python for building integration scripts.
2

Prepare the request

We will use the POST /v2/enrichment/email endpoint.Replace YOUR_API_KEY with your actual key.
curl --request POST \
  --url https://api.blitz-api.ai/v2/enrichment/email \
  --header 'Content-Type: application/json' \
  --header 'x-api-key: YOUR_API_KEY' \
  --data '
{
  "person_linkedin_url": "https://www.linkedin.com/in/example-person"
}
3

Check the response

You should receive a JSON object containing the verified email and its status.
{
  "found": true,
  "email": "jane.doe@acme.com",
  "all_emails": [
    {
      "email": "jane.doe@acme.com",
      "job_order_in_profile": 1,
      "company_linkedin_url": "https://www.linkedin.com/company/acme",
      "email_domain": "acme.com"
    }
  ]
}
Response Fields:
FieldTypeDescription
foundbooleantrue if a verified email was found. false if no email exists in the database.
emailstringThe primary verified work email address. null if found: false.
all_emailsarrayAll verified email addresses found for this profile (usually 1).
all_emails[].emailstringThe verified email address.
all_emails[].job_order_in_profileintegerPosition of the associated job in the person’s LinkedIn profile (1 = current job).
all_emails[].company_linkedin_urlstringLinkedIn URL of the company associated with this email.
all_emails[].email_domainstringDomain of the email address.
All paid plans include unlimited requests — included in your flat monthly subscription.

What just happened?

  1. Authentication: You passed your key via the x-api-key header.
  2. Identity Matching: BlitzAPI matched the LinkedIn profile URL against our verified B2B dataset.
  3. Verification: We validated email deliverability (SMTP handshake) before returning it.

Next Steps

Now that you have the basics down, explore our more advanced features.

Waterfall Search

Don’t have a profile URL? Find people by Job Title and Company.

Bulk Enrichment

Learn how to process thousands of leads efficiently.