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.

Employee Finder — POST /v2/search/employee-finder

Search employees at a company by job level, department, and location. Supports pagination.
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.
See the Employee Finder guide for full documentation. Pagination: increment page to fetch the next page. The response includes total_pages.
This snippet uses the blitzRequest / blitz_request client defined in the Code Examples hub. Copy that first.
const result = await blitzRequest("POST", "/v2/search/employee-finder", {
  company_linkedin_url: "https://www.linkedin.com/company/openai",
  job_level: ["C-Team", "VP", "Director"],
  job_function: ["Sales & Business Development"],
  sales_region: ["NORAM"],
  max_results: 10,
  page: 1,
});

console.log(`Page ${result.page} of ${result.total_pages} (${result.results_length} results)`);
for (const person of result.results) {
  // Employee Finder returns person fields directly (not nested in .person)
  console.log(`${person.full_name}${person.headline}`);
  console.log(`  LinkedIn: ${person.linkedin_url}`);
}