glassdoor.co.in APIglassdoor.co.in ↗
Access Glassdoor India company ratings, salary data, and interview questions via 4 endpoints. Search companies and fetch employer insights programmatically.
curl -X GET 'https://api.parse.bot/scraper/f651ee5b-d086-4d96-a0d1-337af8db79c6/search_companies?query=Infosys' \ -H 'X-API-Key: $PARSE_API_KEY'
Search for companies by name on Glassdoor India. Returns company name, employer ID, and slug for each match.
| Param | Type | Description |
|---|---|---|
| queryrequired | string | Company name to search for. |
{
"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": "Inforsys",
"slug": "Inforsys",
"employerId": "1503118"
}
]
},
"status": "success"
}
}About the glassdoor.co.in 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.
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.
- Build a company comparison tool that ranks employers by
ratingValueandrecommendToFriendPercentage. - 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
ceoApprovalPercentageover time by periodically polling company overview data. - Cross-reference
salariesSubmittedcounts to assess how reliable the salary range data is for a given role.
| Tier | Price | Credits/month | Rate limit |
|---|---|---|---|
| Free | $0/mo | 100 | 5 req/min |
| Hobby | $30/mo | 1,000 | 20 req/min |
| Developer | $100/mo | 5,000 | 250 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.
Does Glassdoor have an official developer API?+
What does `get_company_salaries` return when salary data is sparse for a job title?+
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?+
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?+
Can I retrieve interview questions for a specific job role rather than for the whole company?+
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.