Glassdoor Scraper
Pricing
Pay per usage
Glassdoor Scraper
Scrape Glassdoor job listings, company reviews, salary data, and interview experiences. Search by keyword, location, company, and date range with full pagination support.
Glassdoor Scraper
Pricing
Pay per usage
Scrape Glassdoor job listings, company reviews, salary data, and interview experiences. Search by keyword, location, company, and date range with full pagination support.
You can access the Glassdoor Scraper programmatically from your own applications by using the Apify API. You can also choose the language preference from below. To use the Apify API, you’ll need an Apify account and your API token, found in Integrations settings in Apify Console.
1import { ApifyClient } from 'apify-client';2
3// Initialize the ApifyClient with your Apify API token4// Replace the '<YOUR_API_TOKEN>' with your token5const client = new ApifyClient({6 token: '<YOUR_API_TOKEN>',7});8
9// Prepare Actor input10const input = {11 "scrapeMode": "jobs",12 "searchKeyword": "Software Engineer",13 "location": "",14 "companyUrls": [],15 "maxResults": 5,16 "salaryMinimum": 0,17 "salaryMaximum": 0,18 "jobType": "",19 "datePosted": "",20 "reviewSort": "date_desc",21 "reviewMinRating": 0,22 "includeJobDescription": true,23 "proxyConfiguration": {24 "useApifyProxy": true,25 "apifyProxyGroups": [26 "RESIDENTIAL"27 ]28 },29 "maxConcurrency": 3,30 "requestTimeout": 6031};32
33// Run the Actor and wait for it to finish34const run = await client.actor("magicfingers/glassdoor-scraper").call(input);35
36// Fetch and print Actor results from the run's dataset (if any)37console.log('Results from dataset');38console.log(`💾 Check your data here: https://console.apify.com/storage/datasets/${run.defaultDatasetId}`);39const { items } = await client.dataset(run.defaultDatasetId).listItems();40items.forEach((item) => {41 console.dir(item);42});43
44// 📚 Want to learn more 📖? Go to → https://docs.apify.com/api/client/js/docsThe Apify API client for JavaScript is the official library that allows you to use Glassdoor Scraper API in JavaScript or TypeScript, providing convenience functions and automatic retries on errors.
Install the apify-client
$npm install apify-clientOther API clients include: