{
  "openapi": "3.0.1",
  "info": {
    "title": "Glassdoor Jobs Scraper With Salary Analytics",
    "description": "🔍 Glassdoor Jobs Scraper extracts structured job listings, salaries, company ratings & reviews from Glassdoor at scale. ⚙️ Filter by role, location, or remote; schedule runs; export CSV/JSON. 🚀 Ideal for recruitment, market research & competitive intelligence.",
    "version": "1.0",
    "x-build-id": "EhrPVb5suC4xgn5p7"
  },
  "servers": [
    {
      "url": "https://api.apify.com/v2"
    }
  ],
  "paths": {
    "/acts/scrapier~glassdoor-jobs-scraper/run-sync-get-dataset-items": {
      "post": {
        "operationId": "run-sync-get-dataset-items-scrapier-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/scrapier~glassdoor-jobs-scraper/runs": {
      "post": {
        "operationId": "runs-sync-scrapier-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/scrapier~glassdoor-jobs-scraper/run-sync": {
      "post": {
        "operationId": "run-sync-scrapier-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",
        "properties": {
          "jobKeyword": {
            "title": "🔎 Job title or keyword",
            "type": "string",
            "description": "The role, skill, or title to search for (e.g. 'Software Engineer', 'Data Analyst'). Used together with 🌍 Glassdoor site when 🔗 Bulk search URLs is empty. Also accepts the base actor's original `keyword` key."
          },
          "glassdoorSite": {
            "title": "🌍 Which Glassdoor site?",
            "enum": [
              "us",
              "ar",
              "au",
              "be_nl",
              "be_fr",
              "br",
              "ca_en",
              "ca_fr",
              "de",
              "es",
              "fr",
              "hk",
              "in",
              "ie",
              "it",
              "mx",
              "nl",
              "nz",
              "at",
              "ch_de",
              "ch_fr",
              "sg",
              "gb",
              "jp",
              "kr"
            ],
            "type": "string",
            "description": "Regional Glassdoor site to search. Also accepts the base actor's original `country` key. Default: United States."
          },
          "maxJobs": {
            "title": "🔢 Max jobs to collect",
            "minimum": 1,
            "maximum": 10000,
            "type": "integer",
            "description": "Maximum number of job rows to collect and analyze in this run (salary percentile is computed across all rows in this batch). Also accepts the base actor's original `maxItems` key. Max 10000."
          },
          "targetLocation": {
            "title": "📍 City or region (optional)",
            "type": "string",
            "description": "Free-text location, e.g. 'London', 'Bay Area'. Leave blank for no location filter. Also accepts the base actor's original `location` key."
          },
          "bulkSearchUrls": {
            "title": "🔗 Bulk search URLs (optional, advanced)",
            "type": "array",
            "description": "Optional list of full Glassdoor job-search result URLs to run instead of 🔎/🌍. If provided, 🔎/🌍/📍 are ignored. Also accepts the base actor's original `urls`/`startUrls` keys.",
            "items": {
              "type": "string"
            }
          },
          "targetCompany": {
            "title": "🏢 Dream employer (optional)",
            "type": "string",
            "description": "Type part of a company name to lean toward those employers, or leave empty to see everyone. Also accepts the base actor's original `companyName` key."
          },
          "onlyJobsWithSalary": {
            "title": "💰 Only keep jobs with salary data?",
            "type": "boolean",
            "description": "ON (default) = drop postings with no pay signal at all, so every row is salary-analytics-eligible. OFF = also keep postings with no salary data (their salary/analytics fields will be null). Also accepts the base actor's original `includeNoSalaryJob` key (inverted: this variant reads it as `NOT includeNoSalaryJob` when only this legacy key is supplied)."
          },
          "salaryFloor": {
            "title": "💵⬆️ Minimum salary (floor)",
            "minimum": 0,
            "type": "integer",
            "description": "Only show roles at or above this figure, in the local currency of the chosen site. 0 = no minimum. Also accepts the base actor's original `minSalary` key."
          },
          "salaryCeiling": {
            "title": "💵⬇️ Maximum salary (ceiling)",
            "minimum": 0,
            "type": "integer",
            "description": "Cap the range, or leave 0 for no upper limit. Same currency as the chosen site. Also accepts the base actor's original `maxSalary` key."
          },
          "annualizeSalary": {
            "title": "📆 Compute annualized (yearly) salary?",
            "type": "boolean",
            "description": "ON (default) = normalize hourly/weekly/monthly pay into a common yearly figure (job_salary_annual_min/median/max) and use it to compute each job's salary percentile within this run's batch. OFF = skip annualization + percentile (job_salary_annual_* and job_salary_percentile will be null); the raw job_salary_min/median/max figures are still always extracted when present."
          },
          "postedWithinDays": {
            "title": "📅 How fresh should listings be?",
            "enum": [
              "ANY",
              "1",
              "3",
              "7",
              "14",
              "30"
            ],
            "type": "string",
            "description": "Restrict to postings from the last N days, or ANY for no limit. Also accepts the base actor's original `fromAge` key."
          },
          "contractType": {
            "title": "📄 Contract & work style",
            "enum": [
              "all",
              "fulltime",
              "parttime",
              "contract",
              "temporary",
              "temp-to-hire",
              "internship",
              "entrylevel",
              "apprenticeship"
            ],
            "type": "string",
            "description": "Full-time, part-time, contract, internship, etc. 'All' keeps every option. Also accepts the base actor's original `jobType` key."
          },
          "searchRadiusKm": {
            "title": "📍 Search radius",
            "enum": [
              "0",
              "6",
              "12",
              "18",
              "31",
              "62",
              "124"
            ],
            "type": "string",
            "description": "Circle around 📍 City or region. Also accepts the base actor's original `radius` key."
          },
          "industryFocus": {
            "title": "🏭 Industry — sector focus",
            "enum": [
              "ALL",
              "FINANCIAL",
              "MANAGEMENT_AND_CONSULTING",
              "HUMAN_RESSOURCES_AND_RECRUITMENT",
              "INFORMATION_TECHNOLOGIE"
            ],
            "type": "string",
            "description": "All = every industry, or pick a sector. Also accepts the base actor's original `industryType` key."
          },
          "jobDomain": {
            "title": "🎓 Domain — job family",
            "enum": [
              "ALL",
              "ADMINISTATION",
              "AFFAIRS",
              "CONSEIL",
              "FORMATION",
              "ENGENERING",
              "FINANCE",
              "HUMAN_RESSOURCES_AND_RECRUITMENTS",
              "INFORMATION_TECHNOLOGIE",
              "LEGAL",
              "MEDIA_AND_COMMUNICATION",
              "PRODUCT_PROJECT_MANAGEMENT",
              "SCIENCE_RESEARCH",
              "SELL_AREA"
            ],
            "type": "string",
            "description": "All = open playing field, or choose a domain. Also accepts the base actor's original `domainType` key."
          },
          "companySizeFilter": {
            "title": "👥 Employer size",
            "enum": [
              "ALL",
              "TINY",
              "SMALL",
              "MEDIUM",
              "LARGE",
              "HUGE"
            ],
            "type": "string",
            "description": "From tiny teams to huge enterprises. Also accepts the base actor's original `employerSizes` key."
          },
          "applyMethod": {
            "title": "🔗 Application type",
            "enum": [
              "ALL",
              "EASY_APPLY_INCLUDED",
              "EASY_APPLY_ONLY"
            ],
            "type": "string",
            "description": "All / Easy Apply included / Easy Apply only. Also accepts the base actor's original `applicationType` key."
          },
          "remotePreference": {
            "title": "🏡 Remote work",
            "enum": [
              "ANY",
              "REMOTE_ONLY"
            ],
            "type": "string",
            "description": "Any = remote + on-site. Remote only = WFH-friendly roles. Also accepts the base actor's original `remoteWorkType` key."
          },
          "careerLevel": {
            "title": "📈 Seniority — career stage",
            "enum": [
              "all",
              "internship",
              "entrylevel",
              "midseniorlevel",
              "director",
              "executive"
            ],
            "type": "string",
            "description": "Intern, entry, mid-senior, director, executive, or all. Also accepts the base actor's original `seniorityType` key."
          },
          "minEmployerRating": {
            "title": "⭐ Minimum employer rating",
            "enum": [
              "0",
              "1",
              "2",
              "3",
              "4",
              "5"
            ],
            "type": "string",
            "description": "Only employers rated at least this high. 0 = no minimum. Also accepts the base actor's original `minRating` key."
          },
          "pageDelayMs": {
            "title": "⏱️ Extra delay between pages (ms)",
            "minimum": 0,
            "type": "integer",
            "description": "Optional extra delay between search-result pagination requests. Also accepts the base actor's original `requestDelayMs` key."
          },
          "proxyConfiguration": {
            "title": "🌐 Proxy configuration",
            "type": "object",
            "description": "Optional. Use Apify Proxy for extra reliability or region-specific browsing."
          }
        }
      },
      "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
                  }
                }
              }
            }
          }
        }
      }
    }
  }
}