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

> This action extracts the profile of a specific company on Indeed.

This action allows you to extract detailed information about a company from Indeed, including its profile, reviews, and other relevant data. This can be useful for market research, competitor analysis, or understanding a company's public perception.

### Inputs

<ParamField path="indeed_company_url" type="string" required={true} primary={true}>
  Indeed Job Profile URL should look like
  "[https://www.indeed.com/emplois?q=growth\&vjk=f7adf227d5831e9a](https://www.indeed.com/emplois?q=growth\&vjk=f7adf227d5831e9a)" or
  "[https://www.indeed.com/viewjob?jk=f7adf227d5831e9a](https://www.indeed.com/viewjob?jk=f7adf227d5831e9a)".
</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="company_name" type="string">
      The name of the company
    </ResponseField>

    <ResponseField name="company_turnover" type="string">
      The company's turnover
    </ResponseField>

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

    <ResponseField name="domain" type="string">
      The company's domain
    </ResponseField>

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

    <ResponseField name="grade" type="string">
      The company's grade on Indeed
    </ResponseField>

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

    <ResponseField name="industry" type="string">
      The industry the company operates in
    </ResponseField>

    <ResponseField name="indeed_company_jobs_url" type="string">
      URL to the company's job listings on Indeed
    </ResponseField>

    <ResponseField name="indeed_company_reviews_url" type="string">
      URL to the company's reviews on Indeed
    </ResponseField>

    <ResponseField name="indeed_company_salaries_url" type="string">
      URL to the company's salary information on Indeed
    </ResponseField>

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

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

    <ResponseField name="number_reviews" type="integer">
      The number of reviews the company has on Indeed
    </ResponseField>

    <ResponseField name="website" type="string">
      The company's official website
    </ResponseField>

    <ResponseField name="year_founded" type="integer">
      The year the company was founded
    </ResponseField>
  </Expandable>
</ResponseField>

Below is the JSON schema for the output fields:

<Accordion title="Show JSON Output Schema">
  ```json
  {
      "company_name": "string",
      "company_turnover": "string",
      "description": "string",
      "domain": "string",
      "employees_range": "string",
      "grade": "string",
      "headquarters": "string",
      "industry": "string",
      "indeed_company_jobs_url": "string",
      "indeed_company_reviews_url": "string",
      "indeed_company_salaries_url": "string",
      "logo_url": "string",
      "managing_director": "string",
      "number_reviews": "integer",
      "website": "string",
      "year_founded": "integer"
  }
  ```
</Accordion>

<Note>
  This action is designed to provide comprehensive company insights from Indeed,
  making it a valuable tool for business analysis.
</Note>
