Advanced Glassdoor Scraper avatar
Advanced Glassdoor Scraper
Deprecated
View all Actors
This Actor is deprecated

This Actor is unavailable because the developer has decided to deprecate it. Would you like to try a similar Actor instead?

See alternative Actors
Advanced Glassdoor Scraper

Advanced Glassdoor Scraper

epctex/advanced-glassdoor-scraper

The most advanced Glassdoor Scraper that you would ever need. Extract millions of companies, salaries, interviews, jobs, and reviews from Glassdoor. You can specify search terms, filters, list pages, and more! Extremely fast, with no limits. Super easy to use!

The code examples below show how to run the Actor and get its results. To run the code, you need to have an Apify account. Replace <YOUR_API_TOKEN> in the code with your API token, which you can find under Settings > Integrations in Apify Console. Learn more

1# Set API token
2API_TOKEN=<YOUR_API_TOKEN>
3
4# Prepare Actor input
5cat > input.json <<'EOF'
6{
7  "startUrls": [
8    "https://www.glassdoor.com/Overview/Working-at-Elastic-EI_IE751551.11,18.htm",
9    "https://www.glassdoor.com/Reviews/Elastic-Reviews-E751551.htm",
10    "https://www.glassdoor.com/Reviews/Elastic-Reviews-E751551.htm?filter.iso3Language=eng&filter.employmentStatus=REGULAR&filter.employmentStatus=PART_TIME&filter.searchCategory=CULTURE",
11    "https://www.glassdoor.com/Interview/Elastic-Interview-Questions-E751551.htm",
12    "https://www.glassdoor.com/Interview/Elastic-Marketing-Assistant-Interview-Questions-EI_IE751551.0,7_KO8,27.htm#InterviewReview_76289952",
13    "https://www.glassdoor.com/Job/elastic-jobs-SRCH_KO0,7.htm",
14    "https://www.glassdoor.com/job-listing/federal-account-executive-nga-elastic-JV_IC1138213_KO0,29_KE30,37.htm?jl=1008611278488&pos=107&ao=1136043&s=58&guid=000001884d59c10aafb263d8cfe0037f&src=GD_JOB_AD&t=SR&vt=w&ea=1&cs=1_cd6d3492&cb=1684924907959&jobListingId=1008611278488&jrtk=3-0-1h16ljg9dk6fr801-1h16ljg9ti9j2800-c74621bdf8ed430d-&ctt=1684925008345",
15    "https://www.glassdoor.com/Salary/Elastic-Software-Engineer-Salaries-E751551_D_KO8,25.htm"
16  ],
17  "search": "agency",
18  "maxItems": 20,
19  "endPage": 1,
20  "extendOutputFunction": "($) => { return {} }",
21  "customMapFunction": "(object) => { return {...object} }",
22  "proxy": {
23    "useApifyProxy": true
24  }
25}
26EOF
27
28# Run the Actor using an HTTP API
29# See the full API reference at https://docs.apify.com/api/v2
30curl "https://api.apify.com/v2/acts/epctex~advanced-glassdoor-scraper/runs?token=$API_TOKEN" \
31  -X POST \
32  -d @input.json \
33  -H 'Content-Type: application/json'
Developer
Maintained by Community