> ## Documentation Index
> Fetch the complete documentation index at: https://v3.captaindata.com/llms.txt
> Use this file to discover all available pages before exploring further.

# Extract Sales Navigator Company Employee Distribution & Headcount

> This action extracts the distribution of a company's employees by function from Sales Navigator, along with the growth of these functions over 3 months, 6 months, and 1 year.

This action is designed to provide insights into a company's employee distribution by function using Sales Navigator. It also tracks the growth of these functions over specified time periods, offering valuable data for strategic planning and analysis.

<Steps>
  <Step title="Step 1">
    Access the Sales Navigator and locate the company profile you wish to
    analyze.
  </Step>

  <Step title="Step 2">Copy the company URL from Sales Navigator.</Step>

  <Step title="Step 3">
    Provide the URL as input to this action to extract the desired data.
  </Step>
</Steps>

<ParamField path="sales_navigator_company_url" type="string" required={true} placeholder="">
  A Sales Navigator Company URL should start with
  '[https://www.linkedin.com/sales/company/](https://www.linkedin.com/sales/company/)'.
</ParamField>

<Info>
  Ensure the URL is correctly formatted to avoid errors during data extraction.
</Info>

<ResponseField>
  <Expandable title="Output Fields">
    <ResponseField name="sales_navigator_company_id" type="string">
      The unique identifier for the company on Sales Navigator.
    </ResponseField>

    <ResponseField name="total_employee_count" type="integer">
      The total number of employees in the company.
    </ResponseField>
  </Expandable>
</ResponseField>

Below is the JSON schema for the output:

<Accordion title="Show JSON Output Schema">
  ```json
  {
      "sales_navigator_company_id": "string",
      "total_employee_count": "integer"
  }
  ```
</Accordion>

<Note>
  This action does not require additional parameters beyond the input URL.
</Note>
