Glassdoor Plus avatar
Glassdoor Plus
Under maintenance
Try Actor

$12.00/month

View all Actors
This Actor is under maintenance.

This Actor may be unreliable while under maintenance. Would you like to try a similar Actor instead?

See alternative Actors
Glassdoor Plus

Glassdoor Plus

canadesk/glassdoor-plus
Try Actor

$12.00/month

No limits + City/State filters. Get Search results, Salaries, Interviews, Reviews and Company Data from Glassdoor. It's fast and costs little.

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

1import { ApifyClient } from 'apify-client';
2
3// Initialize the ApifyClient with your Apify API token
4const client = new ApifyClient({
5    token: '<YOUR_API_TOKEN>',
6});
7
8// Prepare Actor input
9const input = {
10    "query": [
11        "crunchbase"
12    ],
13    "company": [],
14    "city": "",
15    "state": "California",
16    "reviewlang": "eng",
17    "proxy": {
18        "useApifyProxy": true,
19        "apifyProxyGroups": [
20            "RESIDENTIAL"
21        ]
22    }
23};
24
25(async () => {
26    // Run the Actor and wait for it to finish
27    const run = await client.actor("canadesk/glassdoor-plus").call(input);
28
29    // Fetch and print Actor results from the run's dataset (if any)
30    console.log('Results from dataset');
31    console.log(`💾 Check your data here: https://console.apify.com/storage/datasets/${run.defaultDatasetId}`);
32    const { items } = await client.dataset(run.defaultDatasetId).listItems();
33    items.forEach((item) => {
34        console.dir(item);
35    });
36})();
37
38// 📚 Want to learn more 📖? Go to → https://docs.apify.com/api/client/js/docs
Developer
Maintained by Community
Actor metrics
  • 4 monthly users
  • 2 stars
  • 100.0% runs succeeded
  • 44 days response time
  • Created in Dec 2023
  • Modified about 1 month ago