Product Capacity
Developer
TaskAGI

Maintained by TaskAGI

Service Metrics

Monthly users
750
Stars
85
Up-time
97%
Last updated
8 days ago

Integrates with

Industries

Data Scraping eCommerce
image

Glassdoor Scraper

Scrape company reviews, company information and top companies from Glassdoor in real-time.
24 Jan, 2024
Active since
Overall rating

Overview

Our Glassdoor Scraper is a cutting-edge tool designed to extract and analyze valuable information from Glassdoor, the leading platform for company reviews and insights. This powerful scraper provides you with a wealth of data, enabling you to make informed decisions about potential employers, competitors, and industry trends.

Key Features and Capabilities

  • Comprehensive company overviews
  • Detailed employee reviews and ratings
  • Salary information across various roles
  • Interview experiences and questions
  • Job listings and descriptions
  • Benefits and perks offered by companies

Data You Can Access

Category Information Provided
Company Profile Size, industry, revenue, headquarters location
Employee Feedback Overall ratings, pros and cons, work-life balance assessments
Compensation Salary ranges, bonuses, stock options
Career Opportunities Growth potential, skill development, promotion trends
Company Culture Values, work environment, team dynamics

Benefits of Using Our Glassdoor Scraper

  1. Competitive Intelligence: Gain insights into competitors' strengths and weaknesses.
  2. Talent Acquisition: Understand what top talent values in potential employers.
  3. Employer Branding: Identify areas for improvement in your company's reputation.
  4. Market Research: Analyze trends in employee satisfaction across industries.
  5. Salary Benchmarking: Ensure your compensation packages remain competitive.

Industries That Benefit from Glassdoor Scraper

Our tool is invaluable for a wide range of sectors, including but not limited to:

  • Human Resources and Recruitment
  • Market Research and Consulting
  • Financial Services and Investment
  • Technology and Software Development
  • Healthcare and Pharmaceuticals
  • Retail and E-commerce
  • Education and Training

Available on RapidAPI

Connect on RapidAPI


Relevant tasks

Scrape & Extract leads from your Apollo account.
Lead generation tool from Instagram. Scrape emails, phone numbers, and website information from Instagram URLs.
Scrape company information from Crunchbase and retrieve top companies by keyword.
Scrape product & company reviews and extract top companies by keyword.
Scrape companies, industries, and top companies from Indeed.com in real-time
Scrape company information from Owler including revenue, employees, industry, competitors, website, phone number, email and much more!
...
Get best offer Request custom scraper
You need to scrape a website or get data from a web page? We can help you with that. Just request a custom scraper and we will get back to you with the best offer.
Starting from $500 / One time payment

Glassdoor Scraper

Description

The Glassdoor Scraper API allows you to extract detailed company information, reviews, and job listings from Glassdoor.com. This powerful tool enables developers to integrate Glassdoor data into their applications, conduct market research, or monitor trends across various companies and job markets.

How to Use

To use the Glassdoor Scraper API, you'll need to authenticate your requests using your API key. The API provides several endpoints for retrieving different types of information:

Endpoints

  • POST https://taskagi.net/api/b2b/glassdoor-scraper/companies - Retrieve company overview information by URL
  • POST https://taskagi.net/api/b2b/glassdoor-scraper/companies-by-keyword - Discover companies by keyword
  • POST https://taskagi.net/api/b2b/glassdoor-scraper/company-reviews - Retrieve company reviews by URL
  • POST https://taskagi.net/api/b2b/glassdoor-scraper/job-listings - Retrieve job listings by URL
  • POST https://taskagi.net/api/b2b/glassdoor-scraper/job-listings-by-keyword - Discover job listings by keyword
  • POST https://taskagi.net/api/b2b/glassdoor-scraper/job-listings-by-company - Retrieve job listings by company URL

Authentication

Include your API key in the request headers:

Authorization: Bearer YOUR_API_KEY

Request Body

The request body should be a JSON object with the following structure:


// For URL-based endpoints
{
    "url": "https://www.glassdoor.com/Overview/Working-at-Company-Name-EI_IE12345.11,23.htm"
}

// For keyword-based endpoints
{
    "keyword": "search term"
}

Rate Limiting

Please note that usage is subject to rate limiting. Refer to your plan details for specific limits.

Sample Response

Here's an example of the data you can expect to receive when using the companies endpoint:


[
    {
        "input": {
            "url": "https://www.glassdoor.co.uk/Overview/Working-at-Department-for-International-Trade-EI_IE313977.11,45.htm"
        },
        "id": "313977",
        "company": "Department for International Trade",
        "ratings_overall": 3.7,
        "details_size": "1001 to 5000 Employees",
        "details_founded": 2016,
        "details_type": "Government",
        "country_code": "United Kingdom",
        "company_type": "Government",
        "details_headquarters": "London, United Kingdom",
        "details_industry": "National Services & Agencies",
        "details_revenue": "Unknown / Non-Applicable",
        "details_website": "www.civil-service-careers.gov.uk/departments/working-for-the-department-for-international-trade",
        "ratings_career_opportunities": 3.4,
        "ratings_ceo_approval": 0.2,
        "ratings_ceo_approval_count": 48,
        "ratings_compensation_benefits": 2.8,
        "ratings_cutlure_values": 3.5,
        "diversity_inclusion_score": "3.8",
        "diversity_inclusion_count": "142",
        "ratings_senior_management": 3.2,
        "ratings_work_life_balance": 4,
        "ratings_business_outlook": 0.47,
        "ratings_recommend_to_friend": 0.7,
        "ratings_rated_ceo": "Elizabeth Truss",
        "salaries_count": 672,
        "career_opportunities_distribution": {
            "one_star": 34,
            "two_star": 32,
            "three_star": 55,
            "four_star": 73,
            "five_star": 35
        },
        "interview_difficulty": "AVERAGE",
        "interviews_count": 63,
        "benefits_count": 61,
        "jobs_count": 38,
        "photos_count": "1",
        "reviews_count": 326,
        "interviews_experience": [
            {
                "name": "POSITIVE",
                "value": "69%"
            },
            {
                "name": "NEGATIVE",
                "value": "15%"
            },
            {
                "name": "NEUTRAL",
                "value": "16%"
            }
        ],
        "url": "https://www.glassdoor.co.uk/Overview/Working-at-Department-for-International-Trade-EI_IE313977.11,45.htm",
        "industry": "National Services & Agencies"
    }
]
                            

import requests
import json

# Your API Key
api_key = 'YOUR_API_KEY'

# API Endpoint for company overview
url = 'https://taskagi.net/api/b2b/glassdoor-scraper/companies'

# Headers
headers = {
    'Authorization': f'Bearer {api_key}',
    'Content-Type': 'application/json'
}

# Request Body
data = {
    'url': 'https://www.glassdoor.co.uk/Overview/Working-at-Department-for-International-Trade-EI_IE313977.11,45.htm'
}

# Send POST request
response = requests.post(url, headers=headers, json=data)

# Check if the request was successful
if response.status_code == 200:
    # Parse the JSON response
    company_data = response.json()
    
    # Print the company information
    print(json.dumps(company_data, indent=2))
else:
    print(f"Error: {response.status_code}")
    print(response.text)

Case studies & Product updates

View all

Start your free trial

Join thousands of others automating their work with TaskAGI

Choose Your Plan

Beginner

Optimal for smaller developers & businesses.
$ 38 / Mon
2000 Requests / month
50 Requests per minute
API Access
Free support
Try for free

Advanced

Optimal for growing enterprises
$ 280 / Mon
15000 Requests / month
5 Requests per second
API Access
Free support
Try for free

Frequesntly Asked Questions

Product