Discover/Glassdoor API
live

Glassdoor APIglassdoor.co.in

Access Glassdoor India company ratings, salary data, and interview questions via 4 endpoints. Search companies and fetch employer insights programmatically.

Endpoint health
verified 4d ago
get_company_overview
get_company_salaries
get_company_interview_questions
search_companies
4/4 passing latest checkself-healing
Endpoints
4
Updated
26d ago

What is the Glassdoor API?

The Glassdoor India API provides access to employer data from glassdoor.co.in across 4 endpoints, covering company search, aggregate ratings, salary submissions by job title, and candidate interview questions. The search_companies endpoint lets you look up any company by name and retrieve its employerId and slug, which are then used to pull detailed overview, compensation, and interview data for that employer.

Try it
Company name to search for.
api.parse.bot/scraper/f651ee5b-d086-4d96-a0d1-337af8db79c6/<endpoint>
Ready to send
Fill in the parameters and hit sign in to send to see live response data here.
Call it over HTTPgrab a free API key at signup
curl -X GET 'https://api.parse.bot/scraper/f651ee5b-d086-4d96-a0d1-337af8db79c6/search_companies?query=Infosys' \
  -H 'X-API-Key: $PARSE_API_KEY'
Python SDK · recommended

Typed, relational, agent-ready

A generated client with real types, enums, and the links between objects — the structure a flat JSON response can't carry. Autocompletes in your editor and reads cleanly to coding agents.

  • Fully typed · autocompletes
  • Objects link to objects
  • Typed errors & pagination

Typed Python client. Set up the SDK in your uv project, then pull this API’s typed client:

uv add parse-sdk
uv run parse init
uv run parse add --marketplace glassdoor-co-in-api

uv run parse add --marketplace pulls a pinned snapshot of this canonical API — it won’t change underneath you. To customize it, subscribe and swap to your own copy.

"""Walkthrough: Glassdoor India SDK — search companies and drill into salary, overview, and interview data."""
from parse_apis.glassdoor_india_api import Glassdoor, CompanyNotFound

client = Glassdoor()

# Search for companies by name; limit= caps total items fetched.
for company in client.companies.search(query="Infosys", limit=3):
    print(company.name, company.employer_id, company.slug)

# Drill into the first result for detailed data.
company = client.companies.search(query="TCS", limit=1).first()
if company:
    # Get company overview — rating, reviews, CEO approval.
    overview = company.overview()
    print(overview.rating_value, overview.review_count, overview.recommend_to_friend_percentage)

    # Get salary data for top job titles at this company.
    salary_data = company.salaries()
    print(salary_data.total_salaries)
    for entry in salary_data.salaries[:3]:
        print(entry.job_title, entry.salaries_submitted, entry.salary_range)

    # Get interview questions and FAQ.
    interviews = company.interviews()
    print(interviews.total_questions_found)
    for q in interviews.questions[:3]:
        print(q)
    for faq_item in interviews.faq[:2]:
        print(faq_item.question, faq_item.answer[:80])

# Typed error handling: catch CompanyNotFound for invalid IDs.
try:
    bad = client.companies.search(query="NonexistentXYZ12345", limit=1).first()
    if bad:
        bad.overview()
except CompanyNotFound as exc:
    print(f"Company not found: employer_id={exc.employer_id}, slug={exc.company_slug}")

print("exercised: companies.search / overview / salaries / interviews / CompanyNotFound")
All endpoints · 4 totalmissing one? ·

Full-text search for companies by name on Glassdoor India. Returns company name, employer ID, and slug for each match. Results are extracted from the search results page; the number of results varies by query specificity. Each result provides the identifiers needed to call other endpoints (employer_id, company_slug).

Input
ParamTypeDescription
queryrequiredstringCompany name to search for.
Response
{
  "type": "object",
  "fields": {
    "query": "string, the search term used",
    "results": "array of company objects with name, employerId, and slug"
  },
  "sample": {
    "data": {
      "query": "Infosys",
      "results": [
        {
          "name": "Infosys",
          "slug": "Infosys",
          "employerId": "7927"
        },
        {
          "name": "Infosys",
          "slug": "Infosys",
          "employerId": "10628599"
        },
        {
          "name": "Inforsys",
          "slug": "Inforsys",
          "employerId": "1503118"
        }
      ]
    },
    "status": "success"
  }
}

About the Glassdoor API

Company Search and Identification

Start with search_companies, which accepts a query string (company name) and returns an array of matching employer objects, each containing name, employerId, and slug. These two identifiers — employer_id and company_slug — are required inputs for all three detail endpoints, so the search step is the entry point for any workflow.

Company Overview and Reputation Signals

get_company_overview returns aggregate sentiment data for a given employer: ratingValue (overall score out of 5), reviewCount (total reviews submitted), ceoApprovalPercentage (share of employees approving of leadership), and recommendToFriendPercentage (share who would recommend the company to a friend). These four fields together give a compact snapshot of employer reputation as reflected on Glassdoor India.

Salary Data by Job Title

get_company_salaries returns a salaries array where each entry includes a jobTitle, a salariesSubmitted count, and an optional salaryRange when enough data exists. The totalSalaries field tells you how many job-title entries were returned for that employer. The endpoint also includes a faq array with question-and-answer strings covering compensation context — useful for surfacing qualitative detail alongside the numeric ranges.

Interview Questions and Hiring Process FAQs

get_company_interview_questions returns two parallel structures: a faq array covering the hiring process (difficulty, typical duration, common experiences) and a questions array of verbatim interview question strings submitted by candidates. The totalQuestionsFound integer tells you how many questions were extracted. Both structures are scoped to a single employer via employer_id and company_slug.

Reliability & maintenanceVerified

The Glassdoor API is a managed, monitored endpoint for glassdoor.co.in — not a raw scraper you maintain. Every endpoint is automatically health-checked on a schedule, and when glassdoor.co.in changes and a check fails, the API is automatically queued for repair and re-verified. It is built to keep working as the site underneath it changes.

This isn't an official glassdoor.co.in API — it's an independent, maintained REST wrapper over public data. Where the source has no official API (or only a limited one), Parse gives you a stable contract over a source that never promised one, and keeps it current. Need a new endpoint or field? You can revise it yourself in plain English and the agent rebuilds it against the live site in minutes — contributing the change back to the shared API is free.

Last verified
4d ago
Latest check
4/4 endpoints passing
Maintenance
Monitored & self-healing
Will this API break when the source site changes?+
It's built not to. Every endpoint is health-checked on a schedule with automated test probes. When the source site changes and a check fails, the API is automatically queued for repair and re-verified — that's the self-healing layer. Each API page shows when its endpoints were last verified. And because marketplace APIs are shared, any fix reaches everyone using it.
Is this an official API from the source site?+
No — Parse APIs are independent, managed REST wrappers over publicly available data. That is the point: where a site has no official API (or only a limited one), Parse gives you a maintained, monitored endpoint for that data and keeps it working as the site changes — so you get a stable contract over a source that never promised one.
Can I fix or extend this API myself if I need a new endpoint or field?+
Yes — and you don't have to wait on us. This API was generated by the Parse agent, which stays attached. Describe the change in plain English ("add an endpoint that returns reviews", "fix the price field") in the revise box on the API page or via the revise_api MCP tool, and the agent rebuilds it against the live site in minutes. Contributing the change back to the public API is free.
What happens if I call an endpoint that has an issue?+
Errors are machine-readable: a bad call returns a clean status with the list of available endpoints and a repair hint, so an agent (or you) can recover or trigger a fix instead of failing silently. Confirmed failures feed the automatic repair queue.
Common use cases
  • Build a company comparison tool that ranks employers by ratingValue and recommendToFriendPercentage.
  • Aggregate salary ranges across job titles at target companies for compensation benchmarking in India.
  • Populate a recruiting dashboard with CEO approval and employee recommendation percentages.
  • Feed interview prep tools with real candidate-submitted questions for specific companies.
  • Screen employers by review volume (reviewCount) to filter out companies with thin data.
  • Track changes in ceoApprovalPercentage over time by periodically polling company overview data.
  • Cross-reference salariesSubmitted counts to assess how reliable the salary range data is for a given role.
Pricing & limitsSee full pricing →
TierPriceCredits/monthRate limit
Free$0/mo1005 req/min
Hobby$30/mo1,00020 req/min
Developer$100/mo5,000100 req/min

One credit = one API call regardless of which marketplace API you call. Exceeding the rate limit returns a 429 response. Authenticate with the X-API-Key header.

Frequently asked questions
Does Glassdoor have an official developer API?+
Glassdoor previously offered a public API at glassdoor.com/developer, but that program has been discontinued and is no longer accepting new registrations. This Parse API provides structured access to Glassdoor India data without requiring an official developer account.
What does `get_company_salaries` return when salary data is sparse for a job title?+
The salaryRange field inside each salary object is optional — it is omitted when insufficient submissions exist for that job title. The salariesSubmitted count on each entry tells you whether the range, when present, is based on a meaningful sample. The totalSalaries field reports how many job-title entries were returned overall for the employer.
Does the API return individual employee reviews or just aggregate ratings?+
Currently the API returns aggregate data only: overall rating, review count, CEO approval percentage, and recommendation percentage from get_company_overview. Individual review text, star breakdowns by category (culture, work-life balance, etc.), and reviewer metadata are not exposed. You can fork this API on Parse and revise it to add an endpoint covering individual review content.
Is this API limited to Indian companies, or does it cover global employers?+
The data comes from glassdoor.co.in, so results reflect the Indian version of Glassdoor. Multinational companies with a presence in India will appear in search results, but coverage and review volumes are skewed toward the Indian market. Global salary benchmarks or reviews from other Glassdoor regional domains are not currently covered. You can fork this API on Parse and revise it to point at a different regional domain.
Can I retrieve interview questions for a specific job role rather than for the whole company?+
Not currently. get_company_interview_questions returns all candidate-submitted questions for an employer without filtering by job title or department. You can fork this API on Parse and revise it to add role-level filtering if the underlying data supports it.
Page content last updated . Spec covers 4 endpoints from glassdoor.co.in.
Related APIs in JobsSee all →
in.indeed.com API
in.indeed.com API
indeed.co.in API
Search for jobs across Indeed India and access detailed information about listings, companies, salaries, and locations to help with your job hunt. Get autocomplete suggestions for job titles and places, plus salary guides and company details to make informed career decisions.
naukri.com API
naukri.com API
indeed.com API
Search and discover job opportunities on Indeed while accessing detailed job descriptions, company profiles, and salary insights all in one place. Get comprehensive career information including specific compensation data to help you find and evaluate the right job opportunity for you.
ca.indeed.com API
Search for jobs across Canada and access detailed job listings, company profiles, employee reviews, and salary information all in one place. Build recruitment tools, career research applications, or job market analysis platforms with comprehensive employment data from Indeed Canada.
timesjobs.com API
Search and browse job listings from TimesJobs.com to find positions by role, category, and company, while discovering popular job roles, featured employers, and detailed job information. Filter opportunities using available facets and explore career statistics to match your skills with the right opportunities.
de.indeed.com API
Access data from de.indeed.com.
shine.com API
Search and discover job listings on Shine.com with detailed information including job descriptions, categories, locations, and top hiring companies. Find similar job opportunities and explore roles across different industries and geographical areas to match your career goals.