# Indeed Company Scraper - Most Comprehensive (`kaix/indeed-company-scraper`) Actor

Scrape Indeed company profiles - industry, size, revenue, CEO, ratings, logos, social links, headquarters, and more. Search by keyword or look up specific companies. 54 countries.

- **URL**: https://apify.com/kaix/indeed-company-scraper.md
- **Developed by:** [Kai](https://apify.com/kaix) (community)
- **Categories:**
- **Stats:** 3 total users, 2 monthly users, 100.0% runs succeeded, 0 bookmarks
- **User rating**: No ratings yet

## Pricing

from $0.08 / 1,000 companies

This Actor is paid per event and usage. You are charged both the fixed price for specific events and for Apify platform usage.
Since this Actor supports Apify Store discounts, the price gets lower the higher subscription plan you have.

Learn more: https://docs.apify.com/actors/running/actors-in-store.md#pay-per-event

## What's an Apify Actor?

Actors are web data automations that power AI and operations. They run on the Apify platform to scrape websites, process data, connect APIs, and automate workflows.
In Batch mode, an Actor accepts a well-defined JSON input, performs an action which can take anything from a few seconds to a few hours,
and optionally produces a well-defined JSON output, datasets with results, or files in key-value store.
In Standby mode, an Actor provides a web server which can be used as a website, API, or an MCP server.
Actors are written with capital "A".

## How to integrate an Actor?

If asked about integration, you help developers integrate Actors into their projects.
You adapt to their stack and deliver integrations that are safe, well-documented, and production-ready.
The best way to integrate Actors is as follows.

- **AI agents and MCP clients** — the [Apify MCP server](https://docs.apify.com/integrations/mcp.md) at `https://mcp.apify.com` (remote, streamable HTTP, OAuth on first use).
- **Agentic workflows and local Actor development** — [Agent Skills](https://apify.com/.well-known/agent-skills/index.json) with the [Apify CLI](https://docs.apify.com/cli/docs.md): `npm install -g apify-cli`, then `apify login`.
- **JavaScript/TypeScript projects** — the official [JS/TS client](https://docs.apify.com/api/client/js/docs.md): `npm install apify-client`.
- **Python projects** — the official [Python client](https://docs.apify.com/api/client/python/docs.md): `pip install apify-client`.
- **Any other language** — the [REST API](https://docs.apify.com/api/v2.md).

For usage examples, see the [API](#api) section below.

For more details, see Apify documentation as [Markdown index](https://docs.apify.com/llms.txt) and [Markdown full-text](https://docs.apify.com/llms-full.txt).

# README

## Indeed Company Profiles

Find structured company profiles by keyword and location, or look up known companies directly. Each result is saved as one dataset item.

### Choose a mode

Use one mode per run.

#### Search

Search by company name or industry. Add `location` when you want to narrow the results.

```json
{
  "keyword": "technology",
  "location": "San Francisco",
  "country": "US",
  "maxItems": 10
}
```

#### Direct lookup

Provide company keys, direct company-page URLs, or both. The Actor removes duplicate keys while preserving their first-seen order.

```json
{
  "companyKeys": [
    "Google",
    "https://www.indeed.com/cmp/Microsoft"
  ],
  "country": "US",
  "maxItems": 2
}
```

Do not combine `keyword` with `companyKeys`. `location` is available only in search mode.

### What you get

| Group | Fields |
| --- | --- |
| Identity | `key`, `name`, `claimed` |
| Company overview | `industry`, `sectors`, `size`, `sizeCode`, `revenue`, `revenueCode`, `description`, `founded` |
| Leadership | CEO name, photo, and approval rating when available |
| Ratings | Overall score, review count, category ratings, and recent yearly ratings |
| Workplace happiness | Overall score, grade, and category scores |
| Links and media | Company page, company website, logos, brand color, and header video |
| Locations and jobs | Headquarters, rated locations, and total listed-job count |
| Related companies | Similar-company names, keys, links, logos, and review counts |
| Run context | Selected country and collection timestamp |

Unavailable scalar values are returned as `null`. Unavailable lists are returned as empty arrays, so the output shape stays consistent.

### Real output example

The selected fields below were copied unchanged from a real run on July 30, 2026. The dataset item also contained the other supported fields listed above.

```json
{
  "key": "Google",
  "name": "Google",
  "industry": "Internet & Web Services",
  "sectors": [
    "Internet & Web Services"
  ],
  "size": "10,000+ employees",
  "sizeCode": "ERv1_10000_PLUS",
  "revenue": "More than $10B (USD)",
  "revenueCode": "RRv1_OVER_10B",
  "founded": 1998,
  "claimed": true,
  "ratings": {
    "overall": 4.3,
    "reviewCount": 6242,
    "categoryRatings": {
      "compensationBenefits": 4.1,
      "culture": 4.2,
      "jobSecurityAdvancement": 3.7,
      "management": 3.9,
      "workLifeBalance": 4.2
    },
    "yearlyRatings": [
      {
        "year": 2026,
        "rating": 4.23199987411499
      },
      {
        "year": 2025,
        "rating": 4.30964469909668
      },
      {
        "year": 2024,
        "rating": 4.1052632331848145
      },
      {
        "year": 2023,
        "rating": 4.131707191467285
      },
      {
        "year": 2022,
        "rating": 4.2390241622924805
      }
    ]
  },
  "urls": {
    "indeed": "https://www.indeed.com/cmp/Google",
    "website": "http://goo.gle/3ygdkgv"
  },
  "logos": {
    "square": "https://d2q79iu7y748jz.cloudfront.net/s/_squarelogo/96x96/d778456838f54580d43f7dd78b3b0d9c",
    "square2x": "https://d2q79iu7y748jz.cloudfront.net/s/_squarelogo/256x256/d778456838f54580d43f7dd78b3b0d9c"
  },
  "headquarters": "Mountain View, CA",
  "locations": [
    {
      "name": "Mountain View, CA",
      "rating": 4.282828330993652
    },
    {
      "name": "New York, NY",
      "rating": 4.22468376159668
    },
    {
      "name": "San Francisco, CA",
      "rating": 4.009803771972656
    },
    {
      "name": "Austin, TX",
      "rating": 4.107438087463379
    }
  ],
  "totalJobCount": 3498,
  "meta": {
    "country": "US",
    "scrapedAt": "2026-07-30T17:56:30.702Z"
  }
}
```

### Input reference

| Field | Description |
| --- | --- |
| `keyword` | Nonblank company name or industry for search mode. |
| `location` | Optional search-mode location. |
| `companyKeys` | One or more company keys or direct company-page URLs for lookup mode. Maximum 50 entries. |
| `country` | Country site used for the run. Default: `US`. Choose a supported option from the input form. |
| `maxItems` | Maximum saved profiles after deduplication. From 1 to 50; default 20. Applies in both modes. |
| `proxyConfiguration` | Optional connection settings. The default uses Apify Proxy. |

### Result behavior

- Search considers one result page and saves up to `maxItems` profiles (maximum 50). It does not claim an unlimited company directory.
- Direct lookup preserves input order after case-insensitive deduplication.
- If some direct-lookup keys are unavailable, valid profiles are still saved and the final status message reports the unavailable count.
- A direct lookup fails when none of its requested profiles can be returned.
- Ratings are summaries; individual review text is not included.
- `totalJobCount` is a count, not a list of job postings.
- Field availability can vary by company and country.

# Actor input Schema

## `keyword` (type: `string`):

Company name or industry to search for. Leave this empty when using Company Keys.

## `location` (type: `string`):

Optional location used to narrow keyword-search results.

## `companyKeys` (type: `array`):

Indeed company keys or direct company-page URLs, such as "Google" or "https://www.indeed.com/cmp/Google". Leave the keyword empty when using this mode.

## `country` (type: `string`):

Country site used for the search or direct lookup.

## `maxItems` (type: `integer`):

Maximum number of company profiles returned in either search or direct-lookup mode.

## `proxyConfiguration` (type: `object`):

Optional connection routing settings. Apify Proxy is enabled by default.

## Actor input object example

```json
{
  "keyword": "Google",
  "country": "US",
  "maxItems": 20,
  "proxyConfiguration": {
    "useApifyProxy": true
  }
}
```

# Actor output Schema

## `profiles` (type: `string`):

Link to the collected company profile records.

# API

You can run this Actor programmatically using our API. Below are code examples in JavaScript, Python, and CLI, as well as the OpenAPI specification and MCP server setup.

## JavaScript example

```javascript
import { ApifyClient } from 'apify-client';

// Initialize the ApifyClient with your Apify API token
// Replace the '<YOUR_API_TOKEN>' with your token
const client = new ApifyClient({
    token: '<YOUR_API_TOKEN>',
});

// Prepare Actor input
const input = {
    "keyword": "Google",
    "proxyConfiguration": {
        "useApifyProxy": true
    }
};

// Run the Actor and wait for it to finish
const run = await client.actor("kaix/indeed-company-scraper").call(input);

// Fetch and print Actor results from the run's dataset (if any)
console.log('Results from dataset');
console.log(`💾 Check your data here: https://console.apify.com/storage/datasets/${run.defaultDatasetId}`);
const { items } = await client.dataset(run.defaultDatasetId).listItems();
items.forEach((item) => {
    console.dir(item);
});

// 📚 Want to learn more 📖? Go to → https://docs.apify.com/api/client/js/docs

```

## Python example

```python
from apify_client import ApifyClient

# Initialize the ApifyClient with your Apify API token
# Replace '<YOUR_API_TOKEN>' with your token.
client = ApifyClient("<YOUR_API_TOKEN>")

# Prepare the Actor input
run_input = {
    "keyword": "Google",
    "proxyConfiguration": { "useApifyProxy": True },
}

# Run the Actor and wait for it to finish
run = client.actor("kaix/indeed-company-scraper").call(run_input=run_input)

# Fetch and print Actor results from the run's dataset (if there are any)
print(f"💾 Check your data here: https://console.apify.com/storage/datasets/{run.default_dataset_id}")
for item in client.dataset(run.default_dataset_id).iterate_items():
    print(item)

# 📚 Want to learn more 📖? Go to → https://docs.apify.com/api/client/python/docs/quick-start

```

## CLI example

```bash
echo '{
  "keyword": "Google",
  "proxyConfiguration": {
    "useApifyProxy": true
  }
}' |
apify call kaix/indeed-company-scraper --silent --output-dataset

```

## MCP server setup

```json
{
    "mcpServers": {
        "apify": {
            "type": "http",
            "url": "https://mcp.apify.com/?tools=fetch-actor-details,kaix/indeed-company-scraper"
        }
    }
}

```

The hosted server signs you in with OAuth on first connect, so no API token belongs in this config. Clients without OAuth support can send an `Authorization: Bearer <APIFY_API_TOKEN>` header instead, using a token from API & Integrations in Apify Console (https://console.apify.com/settings/integrations).

## OpenAPI specification

Download the OpenAPI definition: https://api.apify.com/v2/actors/Eb0aye9anrwdkml67/builds/6ayo2v32VuAr7oCdv/openapi.json
