Prerequisites: You need an API Key. You can grab one from your BlitzAPI Dashboard.
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.
Prepare the request
We will use the
POST /v2/enrichment/email endpoint.Replace YOUR_API_KEY with your actual key.Check the response
You should receive a JSON object containing the verified email and its status.Response Fields:
| Field | Type | Description |
|---|---|---|
found | boolean | true if a verified email was found. false if no email exists in the database. |
email | string | The primary verified work email address. null if found: false. |
all_emails | array | All verified email addresses found for this profile (usually 1). |
all_emails[].email | string | The verified email address. |
all_emails[].job_order_in_profile | integer | Position of the associated job in the person’s LinkedIn profile (1 = current job). |
all_emails[].company_linkedin_url | string | LinkedIn URL of the company associated with this email. |
all_emails[].email_domain | string | Domain of the email address. |
All paid plans include unlimited requests — included in your flat monthly subscription.
What just happened?
- Authentication: You passed your key via the
x-api-keyheader. - Identity Matching: BlitzAPI matched the LinkedIn profile URL against our verified B2B dataset.
- 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.

