> ## 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 Count

> This action provides the evolution of a company's employee count over 6 months, 1 year, and 2 years, along with the total number of employees.

This action is designed to track and analyze the changes in the number of employees for a company listed on LinkedIn's Sales Navigator. It provides insights into employee growth trends over different time periods and the current total employee count.

<Steps>
  <Step title="Step 1">
    Provide the Sales Navigator Company URL to initiate the action.
  </Step>

  <Step title="Step 2">
    Receive detailed employee count data over specified time frames.
  </Step>
</Steps>

### Inputs

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

### Parameters

<Info>No additional parameters are required for this action.</Info>

### Output Fields

The action returns the following fields:

<ResponseField>
  <Expandable title="properties">
    <ResponseField name="employee_median_tenure" type="string">
      The median tenure of employees at the company.
    </ResponseField>

    <ResponseField name="monthly_headcounts" type="string">
      The monthly headcounts of employees over the specified periods.
    </ResponseField>

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

    <ResponseField name="sales_navigator_employee_url" type="string">
      The URL to the employee section on Sales Navigator.
    </ResponseField>

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

Below is the JSON schema for the output fields:

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

<Note>
  This action is particularly useful for HR professionals and business analysts
  looking to monitor company growth and employee retention trends.
</Note>
