{
  "openapi": "3.0.1",
  "info": {
    "title": "Indeed Company Reviews Scraper — Employee Reviews",
    "description": "Every Indeed employee review of any company: the 1-5 rating with five sub-ratings (work-life balance, pay, job security, management, culture), full text, pros, cons, job title, location, dates and employer replies. Company slugs or /cmp/ URLs, 44 country domains. No key, no login. Pay per review.",
    "version": "1.0",
    "x-build-id": "F3wmwMD1sEit9Cqlv"
  },
  "servers": [
    {
      "url": "https://api.apify.com/v2"
    }
  ],
  "paths": {
    "/acts/kestrel~indeed-company-reviews/run-sync-get-dataset-items": {
      "post": {
        "operationId": "run-sync-get-dataset-items-kestrel-indeed-company-reviews",
        "x-openai-isConsequential": false,
        "summary": "Executes an Actor, waits for its completion, and returns Actor's dataset items in response.",
        "tags": [
          "Run Actor"
        ],
        "requestBody": {
          "required": true,
          "content": {
            "application/json": {
              "schema": {
                "$ref": "#/components/schemas/inputSchema"
              }
            }
          }
        },
        "parameters": [
          {
            "name": "token",
            "in": "query",
            "required": true,
            "schema": {
              "type": "string"
            },
            "description": "Enter your Apify token here"
          }
        ],
        "responses": {
          "200": {
            "description": "OK"
          }
        }
      }
    },
    "/acts/kestrel~indeed-company-reviews/runs": {
      "post": {
        "operationId": "runs-sync-kestrel-indeed-company-reviews",
        "x-openai-isConsequential": false,
        "summary": "Executes an Actor and returns information about the initiated run in response.",
        "tags": [
          "Run Actor"
        ],
        "requestBody": {
          "required": true,
          "content": {
            "application/json": {
              "schema": {
                "$ref": "#/components/schemas/inputSchema"
              }
            }
          }
        },
        "parameters": [
          {
            "name": "token",
            "in": "query",
            "required": true,
            "schema": {
              "type": "string"
            },
            "description": "Enter your Apify token here"
          }
        ],
        "responses": {
          "200": {
            "description": "OK",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/runsResponseSchema"
                }
              }
            }
          }
        }
      }
    },
    "/acts/kestrel~indeed-company-reviews/run-sync": {
      "post": {
        "operationId": "run-sync-kestrel-indeed-company-reviews",
        "x-openai-isConsequential": false,
        "summary": "Executes an Actor, waits for completion, and returns the OUTPUT from Key-value store in response.",
        "tags": [
          "Run Actor"
        ],
        "requestBody": {
          "required": true,
          "content": {
            "application/json": {
              "schema": {
                "$ref": "#/components/schemas/inputSchema"
              }
            }
          }
        },
        "parameters": [
          {
            "name": "token",
            "in": "query",
            "required": true,
            "schema": {
              "type": "string"
            },
            "description": "Enter your Apify token here"
          }
        ],
        "responses": {
          "200": {
            "description": "OK"
          }
        }
      }
    }
  },
  "components": {
    "schemas": {
      "inputSchema": {
        "type": "object",
        "properties": {
          "companies": {
            "title": "Indeed companies",
            "uniqueItems": true,
            "type": "array",
            "description": "Indeed company slugs or company URLs, e.g. Google, Home-Depot, https://www.indeed.com/cmp/Starbucks/reviews or https://ca.indeed.com/cmp/Google. The slug is the part after /cmp/ on any Indeed company page. A URL that names a country domain (ca.indeed.com, uk.indeed.com) is read on that domain only; a bare slug uses the countries below. At least one.",
            "default": [],
            "items": {
              "type": "string"
            }
          },
          "countries": {
            "title": "Indeed country domains",
            "uniqueItems": true,
            "type": "array",
            "description": "Which Indeed domain to read each company on. \"us\" is www.indeed.com, which shows only the US-visible reviews (4,044 of Google's 6,258). \"all\" is www.indeed.com with Indeed's own fcountry=ALL filter and returns nearly every review in one walk (6,257 of 6,258) — the cheapest way to get everything. Per-country codes read that domain's own subset in that country's language: ca, uk, ie, au, nz, in, sg, ph, za, ae, hk, id, th, vn, lu, ch, be, de, at, fr, nl, es, it, pt, br, mx, ar, cl, co, pe, pl, se, dk, no, fi, tr, gr, hu, cz, ro, ua, jp, tw. Several domains together multiply the catalogue; reviews served by more than one domain are delivered and charged once.",
            "default": [
              "us"
            ],
            "items": {
              "type": "string"
            }
          },
          "maxReviewsPerCompany": {
            "title": "Max reviews per company",
            "minimum": 0,
            "maximum": 100000,
            "type": "integer",
            "description": "0 = every review the chosen domains list (Indeed pages them 20 at a time; a large employer runs to tens of thousands). N = the first N in the order below, counted across all the countries you asked for. The main cost control.",
            "default": 100
          },
          "sort": {
            "title": "Review order",
            "enum": [
              "newest",
              "helpfulness",
              "rating_desc",
              "rating_asc"
            ],
            "type": "string",
            "description": "The order Indeed returns reviews in. newest = most recent first (Indeed's default). helpfulness = the reviews other people voted most helpful. rating_desc = highest rated first. rating_asc = lowest rated first, which puts the complaints on page one. These four are the only values Indeed honours — every other string is silently ignored and served as newest first, so this is an enum.",
            "default": "newest"
          },
          "minRating": {
            "title": "Only reviews at or above this rating",
            "minimum": 0,
            "maximum": 5,
            "type": "integer",
            "description": "Indeed rates each review 1-5 stars. 0 = no floor, 4 keeps only the positive ones. Combine with sort = highest rated first and the walk stops as soon as a whole page falls below the floor. Filtered reviews are never charged.",
            "default": 0
          },
          "maxRating": {
            "title": "Only reviews at or below this rating",
            "minimum": 0,
            "maximum": 5,
            "type": "integer",
            "description": "The other end of the same 1-5 star scale: 0 = no ceiling, 2 gives a complaints feed. Combine with sort = lowest rated first so the worst reviews arrive on page one and the walk stops once a whole page is above the ceiling. Filtered reviews are never charged.",
            "default": 0
          },
          "requireText": {
            "title": "Only reviews with a written text",
            "type": "boolean",
            "description": "Drop rating-only reviews before billing. Indeed reviews almost always carry a paragraph, so this rarely removes much.",
            "default": false
          },
          "jobTitleContains": {
            "title": "Only reviews from job titles containing",
            "type": "string",
            "description": "Case-insensitive substring of the reviewer's job title, e.g. \"engineer\", \"nurse\", \"driver\". Empty = every job title. Indeed's own fjobtitle filter needs an exact normalised title, so this one runs in the actor: the pages are read either way and the reviews it drops are simply never charged.",
            "default": ""
          },
          "locationContains": {
            "title": "Only reviews from locations containing",
            "type": "string",
            "description": "Case-insensitive substring of the review's location, e.g. \"Mountain View\", \"TX\", \"London\". Empty = every location. Like the job-title filter this runs in the actor, before billing.",
            "default": ""
          },
          "sinceDate": {
            "title": "Only reviews published on or after",
            "type": "string",
            "description": "YYYY-MM-DD, or relative so schedules never go stale: \"30 days\", \"2 weeks\", \"6 months\". With the default newest-first order the walk stops once a whole page predates the date, so a daily schedule reads one page per company. Empty = no date limit.",
            "default": ""
          },
          "includeCompanyRow": {
            "title": "Include a company row",
            "type": "boolean",
            "description": "Also emit one free row per company with Indeed's own overall rating, the total review count, the 1-5 star histogram, the five category averages, the happiness score, the topic breakdown, the pros and cons Indeed extracts, and — from the company overview page, one extra free request — industry, size, headquarters, website, founded year, revenue band and CEO. Never charged.",
            "default": true
          },
          "sessions": {
            "title": "Parallel sessions",
            "minimum": 1,
            "maximum": 16,
            "type": "integer",
            "description": "How many proxy sessions (egress IPs) run in parallel. More is faster; each is paced separately. Indeed refuses roughly one in three fresh sessions with a Cloudflare check, so the actor rotates and retries — a few sessions ride that out comfortably.",
            "default": 2
          },
          "perIp": {
            "title": "Requests per second per session",
            "minimum": 0.1,
            "maximum": 5,
            "type": "number",
            "description": "Pace for each session. Indeed answered 10 of 10 consecutive review pages at 1 req/s from one datacenter IP with no throttling; 1 is comfortable.",
            "default": 1
          },
          "proxyConfiguration": {
            "title": "Proxy",
            "type": "object",
            "description": "Apify Proxy with the datacenter group is enough and is what this actor was measured on — 7 of 9 fresh datacenter sessions were served, and a session that answers once keeps answering. Residential works too and costs far more. Keep the default.",
            "default": {
              "useApifyProxy": true
            }
          }
        }
      },
      "runsResponseSchema": {
        "type": "object",
        "properties": {
          "data": {
            "type": "object",
            "properties": {
              "id": {
                "type": "string"
              },
              "actId": {
                "type": "string"
              },
              "userId": {
                "type": "string"
              },
              "startedAt": {
                "type": "string",
                "format": "date-time",
                "example": "2025-01-08T00:00:00.000Z"
              },
              "finishedAt": {
                "type": "string",
                "format": "date-time",
                "example": "2025-01-08T00:00:00.000Z"
              },
              "status": {
                "type": "string",
                "example": "READY"
              },
              "meta": {
                "type": "object",
                "properties": {
                  "origin": {
                    "type": "string",
                    "example": "API"
                  },
                  "userAgent": {
                    "type": "string"
                  }
                }
              },
              "stats": {
                "type": "object",
                "properties": {
                  "inputBodyLen": {
                    "type": "integer",
                    "example": 2000
                  },
                  "rebootCount": {
                    "type": "integer",
                    "example": 0
                  },
                  "restartCount": {
                    "type": "integer",
                    "example": 0
                  },
                  "resurrectCount": {
                    "type": "integer",
                    "example": 0
                  },
                  "computeUnits": {
                    "type": "integer",
                    "example": 0
                  }
                }
              },
              "options": {
                "type": "object",
                "properties": {
                  "build": {
                    "type": "string",
                    "example": "latest"
                  },
                  "timeoutSecs": {
                    "type": "integer",
                    "example": 300
                  },
                  "memoryMbytes": {
                    "type": "integer",
                    "example": 1024
                  },
                  "diskMbytes": {
                    "type": "integer",
                    "example": 2048
                  }
                }
              },
              "buildId": {
                "type": "string"
              },
              "defaultKeyValueStoreId": {
                "type": "string"
              },
              "defaultDatasetId": {
                "type": "string"
              },
              "defaultRequestQueueId": {
                "type": "string"
              },
              "buildNumber": {
                "type": "string",
                "example": "1.0.0"
              },
              "containerUrl": {
                "type": "string"
              },
              "usage": {
                "type": "object",
                "properties": {
                  "ACTOR_COMPUTE_UNITS": {
                    "type": "integer",
                    "example": 0
                  },
                  "DATASET_READS": {
                    "type": "integer",
                    "example": 0
                  },
                  "DATASET_WRITES": {
                    "type": "integer",
                    "example": 0
                  },
                  "KEY_VALUE_STORE_READS": {
                    "type": "integer",
                    "example": 0
                  },
                  "KEY_VALUE_STORE_WRITES": {
                    "type": "integer",
                    "example": 1
                  },
                  "KEY_VALUE_STORE_LISTS": {
                    "type": "integer",
                    "example": 0
                  },
                  "REQUEST_QUEUE_READS": {
                    "type": "integer",
                    "example": 0
                  },
                  "REQUEST_QUEUE_WRITES": {
                    "type": "integer",
                    "example": 0
                  },
                  "DATA_TRANSFER_INTERNAL_GBYTES": {
                    "type": "integer",
                    "example": 0
                  },
                  "DATA_TRANSFER_EXTERNAL_GBYTES": {
                    "type": "integer",
                    "example": 0
                  },
                  "PROXY_RESIDENTIAL_TRANSFER_GBYTES": {
                    "type": "integer",
                    "example": 0
                  },
                  "PROXY_SERPS": {
                    "type": "integer",
                    "example": 0
                  }
                }
              },
              "usageTotalUsd": {
                "type": "number",
                "example": 0.00005
              },
              "usageUsd": {
                "type": "object",
                "properties": {
                  "ACTOR_COMPUTE_UNITS": {
                    "type": "integer",
                    "example": 0
                  },
                  "DATASET_READS": {
                    "type": "integer",
                    "example": 0
                  },
                  "DATASET_WRITES": {
                    "type": "integer",
                    "example": 0
                  },
                  "KEY_VALUE_STORE_READS": {
                    "type": "integer",
                    "example": 0
                  },
                  "KEY_VALUE_STORE_WRITES": {
                    "type": "number",
                    "example": 0.00005
                  },
                  "KEY_VALUE_STORE_LISTS": {
                    "type": "integer",
                    "example": 0
                  },
                  "REQUEST_QUEUE_READS": {
                    "type": "integer",
                    "example": 0
                  },
                  "REQUEST_QUEUE_WRITES": {
                    "type": "integer",
                    "example": 0
                  },
                  "DATA_TRANSFER_INTERNAL_GBYTES": {
                    "type": "integer",
                    "example": 0
                  },
                  "DATA_TRANSFER_EXTERNAL_GBYTES": {
                    "type": "integer",
                    "example": 0
                  },
                  "PROXY_RESIDENTIAL_TRANSFER_GBYTES": {
                    "type": "integer",
                    "example": 0
                  },
                  "PROXY_SERPS": {
                    "type": "integer",
                    "example": 0
                  }
                }
              }
            }
          }
        }
      }
    }
  }
}