{
  "openapi": "3.0.1",
  "info": {
    "title": "Glassdoor Salary & Reviews Intel - Comp Benchmarks, Interviews",
    "description": "Salary distributions, rating sub-scores, review themes, and interview intel from logged-out public Glassdoor pages. Aggregates, not named reviewers. For comp benchmarking, recruiting, PE people-cost diligence. Glassdoor killed its public API in 2024, so there is no official feed.",
    "version": "0.1",
    "x-build-id": "m4d730f8pXJFPiLDz"
  },
  "servers": [
    {
      "url": "https://api.apify.com/v2"
    }
  ],
  "paths": {
    "/acts/seibs.co~glassdoor-salary-intel/run-sync-get-dataset-items": {
      "post": {
        "operationId": "run-sync-get-dataset-items-seibs.co-glassdoor-salary-intel",
        "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/seibs.co~glassdoor-salary-intel/runs": {
      "post": {
        "operationId": "runs-sync-seibs.co-glassdoor-salary-intel",
        "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/seibs.co~glassdoor-salary-intel/run-sync": {
      "post": {
        "operationId": "run-sync-seibs.co-glassdoor-salary-intel",
        "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",
        "required": [
          "mode"
        ],
        "properties": {
          "mode": {
            "title": "Mode",
            "enum": [
              "company_overview",
              "salaries",
              "reviews_intel",
              "interview_intel",
              "full_intel"
            ],
            "type": "string",
            "description": "company_overview = company profile + overall rating + sub-scores (one company_record per company). salaries = that PLUS per-role salary datapoints. reviews_intel = that PLUS one aggregated review-intelligence record per company (rating histogram, rating trend by year, top pros/cons/advice themes - aggregates, no named reviewers). interview_intel = that PLUS interview difficulty, experience split, offer rate, and common questions. full_intel = all of the above (highest cost).",
            "default": "company_overview"
          },
          "companies": {
            "title": "Companies (names or Glassdoor URLs)",
            "maxItems": 25,
            "type": "array",
            "description": "Company names to resolve (e.g. 'Stripe', 'Databricks') OR direct glassdoor.com URLs (e.g. 'https://www.glassdoor.com/Overview/Working-at-Stripe-EI_IE671932.htm'). Names are resolved via Glassdoor's public search; a direct Overview/Reviews/Salary URL with an EI_IE employer id is the most reliable. Hard cap of 25.",
            "default": [],
            "items": {
              "type": "string"
            }
          },
          "role_filter": {
            "title": "Role filter (salary datapoints)",
            "maxItems": 20,
            "type": "array",
            "description": "Keep only salary datapoints whose role title contains one of these substrings (case-insensitive), e.g. ['software engineer', 'product manager', 'data']. Leave empty to keep every role Glassdoor exposes. Applies only in salaries / full_intel modes. Hard cap of 20.",
            "default": [],
            "items": {
              "type": "string"
            }
          },
          "location": {
            "title": "Location / country scope (optional)",
            "type": "string",
            "description": "Optional location or country to scope salary and rating context where the Glassdoor page supports it (e.g. 'United States', 'London', 'Germany'). Leave empty for the company-wide / default-location figures Glassdoor serves.",
            "default": ""
          },
          "max_salary_datapoints_per_company": {
            "title": "Max salary datapoints per company",
            "minimum": 1,
            "maximum": 300,
            "type": "integer",
            "description": "Hard cap on salary role rows returned per company (salaries / full_intel modes). Each row is one salary_datapoint charge. Default 50, max 300.",
            "default": 50
          },
          "max_reviews_sampled": {
            "title": "Max reviews sampled (theme aggregation only)",
            "minimum": 1,
            "maximum": 500,
            "type": "integer",
            "description": "How many recent public review snippets to sample when computing review themes and the rating trend. This drives the aggregation only - individual reviews are never emitted. More snippets = more stable themes, at slightly higher compute. Default 100, max 500.",
            "default": 100
          },
          "include_interview": {
            "title": "Include interview intel",
            "type": "boolean",
            "description": "Also fetch the interview page and emit an interview_intel record (difficulty, experience split, offer rate, common questions) even in non-interview modes. Off by default because it adds an interview_intel charge per company. interview_intel and full_intel modes always include it.",
            "default": false
          },
          "contact_email": {
            "title": "Contact email (optional, for User-Agent)",
            "type": "string",
            "description": "Optional contact email added to the request headers (good-citizen practice). Not required and never used to log in.",
            "default": ""
          },
          "monitor_webhook_url": {
            "title": "Monitor webhook URL (Slack / email, optional)",
            "type": "string",
            "description": "When this actor runs under an Apify Schedule (monitor mode), post the change digest to this Slack-compatible webhook URL.",
            "default": ""
          },
          "use_apify_proxy": {
            "title": "Use Apify Proxy",
            "type": "boolean",
            "description": "Route requests through Apify Proxy. Strongly recommended - Glassdoor sits behind Cloudflare and blocks un-proxied requests.",
            "default": true
          },
          "apify_proxy_groups": {
            "title": "Proxy groups",
            "type": "array",
            "description": "Apify Proxy groups. RESIDENTIAL is the default here (and recommended) because Glassdoor is behind Cloudflare - residential IPs plus real Chrome TLS impersonation look like a normal visitor, where datacenter IPs get challenged. If you see blocked errors, keep this on RESIDENTIAL and lower concurrency.",
            "default": [
              "RESIDENTIAL"
            ],
            "items": {
              "type": "string"
            }
          },
          "concurrency": {
            "title": "Max concurrent companies",
            "minimum": 1,
            "maximum": 4,
            "type": "integer",
            "description": "How many companies to fetch in parallel. Kept low on purpose - Glassdoor is aggressive about rate limits. Default 2, max 4. Lower it to 1 if you hit blocks.",
            "default": 2
          }
        }
      },
      "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
                  }
                }
              }
            }
          }
        }
      }
    }
  }
}