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.

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

Convert a website domain to a Company LinkedIn URL. Use this as the first step when your source data only contains domains.
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.
Returns found (boolean) and company_linkedin_url (string).
This snippet uses the blitzRequest / blitz_request client defined in the Code Examples hub. Copy that first.
const result = await blitzRequest("POST", "/v2/enrichment/domain-to-linkedin", {
  domain: "openai.com",
});

if (result.found) {
  console.log(`LinkedIn URL: ${result.company_linkedin_url}`);
  // Now use this URL for Waterfall ICP, Employee Finder, or Company Enrichment
}