{
  "openapi": "3.0.1",
  "info": {
    "title": "Glassdoor Scraper — Reviews, Salaries, Interviews & Jobs",
    "description": "Scrape Glassdoor employer intelligence: ratings, employee reviews, interview questions, salary bands, and job listings with pay ranges. Resolve company names, IDs, or URLs; keyword job search across 15+ domains. HTTP + residential proxy — Glassdoor API alternative for HR.",
    "version": "1.0",
    "x-build-id": "3Bh3OQJsj9IK9tKeo"
  },
  "servers": [
    {
      "url": "https://api.apify.com/v2"
    }
  ],
  "paths": {
    "/acts/crawloop~glassdoor-scraper/run-sync-get-dataset-items": {
      "post": {
        "operationId": "run-sync-get-dataset-items-crawloop-glassdoor-scraper",
        "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/crawloop~glassdoor-scraper/runs": {
      "post": {
        "operationId": "runs-sync-crawloop-glassdoor-scraper",
        "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/crawloop~glassdoor-scraper/run-sync": {
      "post": {
        "operationId": "run-sync-crawloop-glassdoor-scraper",
        "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": {
          "companyNames": {
            "title": "Company names",
            "type": "array",
            "description": "Plain employer names to resolve on Glassdoor (e.g. Amazon, Google, Microsoft).",
            "items": {
              "type": "string"
            }
          },
          "startUrls": {
            "title": "Start URLs",
            "type": "array",
            "description": "Glassdoor Overview / Reviews / Jobs / Interview / Salary / job-search URLs. Employer ID is parsed from EI_IE / E{id}.",
            "items": {
              "type": "object",
              "required": [
                "url"
              ],
              "properties": {
                "url": {
                  "type": "string",
                  "title": "URL of a web page",
                  "format": "uri"
                }
              }
            }
          },
          "employerIds": {
            "title": "Employer IDs",
            "type": "array",
            "description": "Numeric Glassdoor employer IDs (e.g. 6036 for Amazon) or E6036.",
            "items": {
              "type": "string"
            }
          },
          "jobKeywords": {
            "title": "Job search keywords",
            "type": "array",
            "description": "Keyword job search (independent of company intel). Example: software engineer.",
            "items": {
              "type": "string"
            }
          },
          "location": {
            "title": "Job location",
            "type": "string",
            "description": "City/region for job search (resolved via Glassdoor location typeahead). Example: New York, NY"
          },
          "domain": {
            "title": "Glassdoor domain",
            "enum": [
              "com",
              "co.uk",
              "ca",
              "com.au",
              "in",
              "de",
              "fr",
              "nl",
              "ie",
              "be",
              "ch",
              "at",
              "es",
              "it",
              "pt",
              "sg"
            ],
            "type": "string",
            "description": "Regional Glassdoor site. Reviews/interviews language defaults to the market.",
            "default": "com"
          },
          "language": {
            "title": "Review language (iso3)",
            "type": "string",
            "description": "Override default language for reviews/interviews (eng, deu, fra, spa, por, ita, nld). Leave empty to use the domain default."
          },
          "maxItems": {
            "title": "Max items",
            "minimum": 0,
            "type": "integer",
            "description": "Hard cap on dataset rows (all types). 0 = unlimited.",
            "default": 100
          },
          "includeReviews": {
            "title": "Include employee reviews",
            "type": "boolean",
            "description": "Employee reviews from public Overview/Reviews pages (JSON-LD and cards). Extra pages are collected while they return data.",
            "default": false
          },
          "maxReviewsPerCompany": {
            "title": "Max reviews per company",
            "minimum": 0,
            "type": "integer",
            "description": "Cap employee review rows per employer.",
            "default": 50
          },
          "sortReviewsBy": {
            "title": "Review sort",
            "enum": [
              "DATE",
              "RELEVANCE"
            ],
            "type": "string",
            "description": "DATE returns newest first (better for monitoring). RELEVANCE is Glassdoor's default ranking.",
            "default": "DATE"
          },
          "includeInterviews": {
            "title": "Include interview experiences",
            "type": "boolean",
            "description": "Interview questions, difficulty, outcome, and process text.",
            "default": false
          },
          "maxInterviewsPerCompany": {
            "title": "Max interviews per company",
            "minimum": 0,
            "type": "integer",
            "description": "Cap interview experience rows per employer.",
            "default": 50
          },
          "includeSalaries": {
            "title": "Include salary bands",
            "type": "boolean",
            "description": "Salary rows by job title when the employer salaries BFF is available.",
            "default": false
          },
          "maxSalariesPerCompany": {
            "title": "Max salary rows per company",
            "minimum": 0,
            "type": "integer",
            "description": "Cap salary-band rows per employer.",
            "default": 50
          },
          "includeJobs": {
            "title": "Include company jobs",
            "type": "boolean",
            "description": "Open jobs for each resolved employer (employer rating attached when known).",
            "default": false
          },
          "maxJobsPerCompany": {
            "title": "Max jobs per company",
            "minimum": 0,
            "type": "integer",
            "description": "Cap open job rows per employer.",
            "default": 50
          },
          "maxJobs": {
            "title": "Max jobs per keyword search",
            "minimum": 0,
            "type": "integer",
            "description": "Cap for jobKeywords / job-search URL mode.",
            "default": 50
          },
          "sortJobsBy": {
            "title": "Job sort",
            "enum": [
              "date",
              "relevance"
            ],
            "type": "string",
            "description": "Sort keyword job search by newest date or relevance.",
            "default": "date"
          },
          "remoteOnly": {
            "title": "Remote jobs only",
            "type": "boolean",
            "description": "When true, restrict keyword job search to remote roles.",
            "default": false
          },
          "jobPostedWithinDays": {
            "title": "Jobs posted within N days",
            "minimum": 0,
            "type": "integer",
            "description": "Optional Glassdoor fromAge filter (e.g. 1, 3, 7, 14, 30). Empty = any time."
          },
          "compact": {
            "title": "Compact rows",
            "type": "boolean",
            "description": "Return core fields only (token-efficient for MCP / LLM pipelines).",
            "default": false
          },
          "incrementalMode": {
            "title": "Incremental / monitor mode",
            "type": "boolean",
            "description": "Emit only new reviews/interviews/jobs and changed company fingerprints since the last run.",
            "default": false
          },
          "stateKey": {
            "title": "Monitor state key",
            "type": "string",
            "description": "KV key inside the monitor store for this watchlist baseline.",
            "default": "MONITOR_STATE"
          },
          "monitorStoreName": {
            "title": "Monitor KV store name",
            "type": "string",
            "description": "Named Apify Key-Value Store for incremental watermarks.",
            "default": "glassdoor-monitor-store"
          },
          "proxyConfiguration": {
            "title": "Proxy configuration",
            "type": "object",
            "description": "Residential proxies recommended. Match country to the Glassdoor domain (US for .com, DE for .de).",
            "default": {
              "useApifyProxy": true,
              "apifyProxyGroups": [
                "RESIDENTIAL"
              ],
              "apifyProxyCountry": "US"
            }
          }
        }
      },
      "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
                  }
                }
              }
            }
          }
        }
      }
    }
  }
}