{
  "openapi": "3.0.1",
  "info": {
    "title": "GlassDoor Jobs Scraper 2026",
    "description": "Extract realtime comprehensive job listings, employee reviews,salaries, and interview experiences from GlassDoor - the world's largest workplace intelligence platform.",
    "version": "2.0",
    "x-build-id": "8oiXUrCLu3lwfxsIx"
  },
  "servers": [
    {
      "url": "https://api.apify.com/v2"
    }
  ],
  "paths": {
    "/acts/devcake~glassdoor-jobs-scraper/run-sync-get-dataset-items": {
      "post": {
        "operationId": "run-sync-get-dataset-items-devcake-glassdoor-jobs-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/devcake~glassdoor-jobs-scraper/runs": {
      "post": {
        "operationId": "runs-sync-devcake-glassdoor-jobs-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/devcake~glassdoor-jobs-scraper/run-sync": {
      "post": {
        "operationId": "run-sync-devcake-glassdoor-jobs-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",
        "required": [
          "scrapeType"
        ],
        "properties": {
          "scrapeType": {
            "title": "Data Type",
            "minItems": 1,
            "maxItems": 4,
            "type": "array",
            "description": "Select one or more data types to scrape. Each type requires different input below.",
            "items": {
              "type": "string",
              "enum": [
                "jobs",
                "reviews",
                "interviews",
                "salaries"
              ],
              "enumTitles": [
                "Jobs",
                "Reviews",
                "Interviews",
                "Salaries"
              ]
            },
            "default": [
              "jobs"
            ]
          },
          "searchQueries": {
            "title": "Job Titles",
            "type": "array",
            "description": "Job titles, skills, or keywords to search. Used for Jobs and Salaries. Each query runs separately.",
            "items": {
              "type": "string"
            }
          },
          "employers": {
            "title": "Employers",
            "type": "array",
            "description": "<strong>Required for Reviews & Interviews.</strong> GlassDoor employer URLs or IDs. Examples: <code>https://www.glassdoor.com/Reviews/Google-Reviews-E9079.htm</code> or just <code>9079</code>. Supports all GlassDoor domains.",
            "items": {
              "type": "string"
            }
          },
          "location": {
            "title": "Location",
            "type": "string",
            "description": "City, state, or country. Examples: <code>San Francisco</code>, <code>Remote</code>, <code>United Kingdom</code>. Leave empty for all locations."
          },
          "countryId": {
            "title": "Country",
            "enum": [
              "1",
              "3",
              "4",
              "5",
              "6",
              "7",
              "8",
              "9",
              "10",
              "11",
              "12"
            ],
            "type": "string",
            "description": "Sets both search region and proxy country (required to bypass GlassDoor protection).",
            "default": "1"
          },
          "maxPages": {
            "title": "Max Pages",
            "minimum": 1,
            "maximum": 100,
            "type": "integer",
            "description": "Pages per search query. 30 jobs per page. Keep low for testing.",
            "default": 1
          },
          "jobType": {
            "title": "Job Type",
            "enum": [
              "all",
              "fulltime",
              "parttime",
              "contract",
              "internship",
              "temporary"
            ],
            "type": "string",
            "description": "Filter by employment type.",
            "default": "all"
          },
          "remoteOk": {
            "title": "Remote Only",
            "type": "boolean",
            "description": "Show only remote/work-from-home jobs.",
            "default": false
          },
          "minSalary": {
            "title": "Min Salary (USD/year)",
            "minimum": 0,
            "maximum": 1000000,
            "type": "integer",
            "description": "Minimum annual salary. Only filters jobs with salary info."
          },
          "easyApplyOnly": {
            "title": "Easy Apply Only",
            "type": "boolean",
            "description": "Show only jobs with one-click Easy Apply.",
            "default": false
          },
          "reviewPages": {
            "title": "Max Pages",
            "minimum": 2,
            "maximum": 100,
            "type": "integer",
            "description": "Pages per employer. 10 reviews per page. Minimum 2 pages required.",
            "default": 2
          },
          "reviewSort": {
            "title": "Sort By",
            "enum": [
              "DATE",
              "RATING"
            ],
            "type": "string",
            "description": "Order of review results.",
            "default": "DATE"
          },
          "interviewPages": {
            "title": "Max Pages",
            "minimum": 2,
            "maximum": 100,
            "type": "integer",
            "description": "Pages per employer. 10 interviews per page. Minimum 2 pages required.",
            "default": 2
          },
          "interviewSort": {
            "title": "Sort By",
            "enum": [
              "DATE",
              "RATING"
            ],
            "type": "string",
            "description": "Order of interview results.",
            "default": "DATE"
          },
          "jobTitleFilter": {
            "title": "Filter by Job Title",
            "type": "string",
            "description": "Show interviews for specific job title only. Leave empty for all."
          },
          "salaryJobTitles": {
            "title": "Job Titles",
            "type": "array",
            "description": "Specific job titles for salary data. Falls back to Job Titles above if empty.",
            "items": {
              "type": "string"
            }
          },
          "salaryPages": {
            "title": "Max Pages",
            "minimum": 1,
            "maximum": 100,
            "type": "integer",
            "description": "Pages per job title. 20 companies per page.",
            "default": 1
          },
          "salarySort": {
            "title": "Sort By",
            "enum": [
              "POPULAR",
              "HIGHEST_PAY",
              "MOST_REPORTS"
            ],
            "type": "string",
            "description": "Order of salary results.",
            "default": "POPULAR"
          },
          "proxyConfiguration": {
            "title": "Proxy",
            "type": "object",
            "description": "Recommended: leave as default. Auto-configured based on Country selection above.",
            "default": {
              "useApifyProxy": true,
              "apifyProxyGroups": [
                "RESIDENTIAL"
              ]
            }
          },
          "requestDelay": {
            "title": "Request Delay (sec)",
            "minimum": 0,
            "maximum": 10,
            "type": "number",
            "description": "Delay between requests. Increase if getting blocked.",
            "default": 0.5
          }
        }
      },
      "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
                  }
                }
              }
            }
          }
        }
      }
    }
  }
}