Skip to main content

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.

LinkedIn → Domain — POST /v2/enrichment/linkedin-to-domain

Get the email domain associated with a Company LinkedIn URL.
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.
This snippet uses the blitzRequest / blitz_request client defined in the Code Examples hub. Copy that first.
const result = await blitzRequest("POST", "/v2/enrichment/linkedin-to-domain", {
  company_linkedin_url: "https://www.linkedin.com/company/openai",
});

if (result.found) {
  console.log(`Email domain: ${result.email_domain}`);
}