> ## 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 LinkedIn Company Profile

> Extract information from a LinkedIn company page.

A company page on LinkedIn contains valuable information about an enterprise, such as company growth, products and services, employees, location, and website. This action allows you to extract detailed information from a LinkedIn company page, which can be used for various purposes:

* Source leads for TAM mapping and account-based marketing (ABM)
* Extract company employees and filter against your best ICP
* Qualify leads based on company attributes
* Conduct competition analysis and GTM strategies

<iframe src="//www.loom.com/embed/e460de3be53c4e88a3d1e80b9180cad9" width="100%" height="400" frameborder="0" allowfullscreen />

### Inputs

<ParamField path="linkedin_company_url" type="string" required={true} placeholder="LinkedIn Company URL">
  A LinkedIn Company URL should start with
  '[https://www.linkedin.com/sales/company](https://www.linkedin.com/sales/company)', '[https://www.linkedin/showcase](https://www.linkedin/showcase)',
  '[https://www.linkedin.com/company](https://www.linkedin.com/company)', or '[https://www.linkedin.com/school](https://www.linkedin.com/school)'.
</ParamField>

### Parameters

<ParamField path="extractOpenPositions" type="boolean" default={false}>
  Extract the company's number of open positions.
</ParamField>

### Output Fields

The extracted data includes a wide range of fields:

<ResponseField>
  <Expandable title="properties">
    <ResponseField name="city" type="string">
      The city where the company is located
    </ResponseField>

    <ResponseField name="company_name" type="string">
      The name of the company
    </ResponseField>

    <ResponseField name="country" type="string">
      The country where the company is located
    </ResponseField>

    <ResponseField name="crunchbase_company_url" type="string">
      The Crunchbase URL of the company
    </ResponseField>

    <ResponseField name="description" type="string">
      The description of the company
    </ResponseField>

    <ResponseField name="domain" type="string">
      The domain of the company
    </ResponseField>

    <ResponseField name="employees_range" type="string">
      The range of employees in the company
    </ResponseField>

    <ResponseField name="founded_on" type="string">
      The founding date of the company
    </ResponseField>

    <ResponseField name="followers_count" type="integer">
      The number of followers on LinkedIn
    </ResponseField>

    <ResponseField name="geographic_area" type="string">
      The geographic area of the company
    </ResponseField>

    <ResponseField name="headquarters" type="string">
      The headquarters of the company
    </ResponseField>

    <ResponseField name="industries" type="string">
      The industries the company is involved in
    </ResponseField>

    <ResponseField name="industry" type="string">
      The primary industry of the company
    </ResponseField>

    <ResponseField name="last_funding_currency" type="string">
      The currency of the last funding
    </ResponseField>

    <ResponseField name="last_funding_date" type="string">
      The date of the last funding
    </ResponseField>

    <ResponseField name="last_funding_investors" type="string">
      The investors in the last funding
    </ResponseField>

    <ResponseField name="last_funding_raised" type="string">
      The amount raised in the last funding
    </ResponseField>

    <ResponseField name="last_funding_type" type="string">
      The type of the last funding
    </ResponseField>

    <ResponseField name="linkedin_company_id" type="string">
      The LinkedIn ID of the company
    </ResponseField>

    <ResponseField name="linkedin_company_phone" type="string">
      The phone number listed on LinkedIn
    </ResponseField>

    <ResponseField name="linkedin_company_url" type="string">
      The LinkedIn company URL
    </ResponseField>

    <ResponseField name="linkedin_employees_url" type="string">
      The LinkedIn URL for company employees
    </ResponseField>

    <ResponseField name="linkedin_job_search_url" type="string">
      The LinkedIn job search URL for the company
    </ResponseField>

    <ResponseField name="linkedin_school_id" type="string">
      The LinkedIn school ID
    </ResponseField>

    <ResponseField name="locations" type="string">
      The locations of the company
    </ResponseField>

    <ResponseField name="logo_url" type="string">
      The URL of the company's logo
    </ResponseField>

    <ResponseField name="number_employees" type="integer">
      The number of employees
    </ResponseField>

    <ResponseField name="number_of_locations" type="integer">
      The number of company locations
    </ResponseField>

    <ResponseField name="postal_code" type="string">
      The postal code of the company
    </ResponseField>

    <ResponseField name="sales_navigator_company_url" type="string">
      The Sales Navigator URL of the company
    </ResponseField>

    <ResponseField name="sales_navigator_employees_url" type="string">
      The Sales Navigator URL for company employees
    </ResponseField>

    <ResponseField name="specialties" type="string">
      The specialties of the company
    </ResponseField>

    <ResponseField name="tagline" type="string">
      The tagline of the company
    </ResponseField>

    <ResponseField name="type" type="string">
      The type of the company
    </ResponseField>

    <ResponseField name="website" type="string">
      The website of the company
    </ResponseField>
  </Expandable>
</ResponseField>

Below is the JSON schema for the output fields:

<Accordion title="Show JSON Output Schema">
  ```json
  {
      "city": "string",
      "company_name": "string",
      "country": "string",
      "crunchbase_company_url": "string",
      "description": "string",
      "domain": "string",
      "employees_range": "string",
      "founded_on": "string",
      "followers_count": "integer",
      "geographic_area": "string",
      "headquarters": "string",
      "industries": "string",
      "industry": "string",
      "last_funding_currency": "string",
      "last_funding_date": "string",
      "last_funding_investors": "string",
      "last_funding_raised": "string",
      "last_funding_type": "string",
      "linkedin_company_id": "string",
      "linkedin_company_phone": "string",
      "linkedin_company_url": "string",
      "linkedin_employees_url": "string",
      "linkedin_job_search_url": "string",
      "linkedin_school_id": "string",
      "locations": "string",
      "logo_url": "string",
      "number_employees": "integer",
      "number_of_locations": "integer",
      "postal_code": "string",
      "sales_navigator_company_url": "string",
      "sales_navigator_employees_url": "string",
      "specialties": "string",
      "tagline": "string",
      "type": "string",
      "website": "string"
  }
  ```
</Accordion>
