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.

Company Enrichment — POST /v2/enrichment/company

Retrieve a full company profile from a LinkedIn company 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/company", {
  company_linkedin_url: "https://www.linkedin.com/company/openai",
});

console.log(`Name: ${result.company.name}`);
console.log(`Industry: ${result.company.industry}`);
console.log(`Employees: ${result.company.employee_count}`);