Track employee reviews, ratings, and employer brand sentiment across review platforms. Understand what employees are saying.
Employee reviews on Glassdoor, Indeed, and other platforms shape how candidates perceive your company. Negative reviews can hurt recruiting, while positive sentiment attracts top talent.
Monitoring reviews manually across platforms is tedious. You need automated collection and analysis to track sentiment over time.
Comprehensive employer brand monitoring
Monitor overall ratings, category scores, and rating trends over time.
AI analysis of pros, cons, and overall review sentiment.
Identify common themes like culture, management, compensation.
Benchmark your employer brand against competitors.
Extract company review data
const axios = require('axios');
const API_KEY = 'your_api_key';
// Extract company ratings and review summary
const reviewPageUrl = 'https://review-site.com/company/tech-corp/reviews';
const companyData = await axios.get('https://api.webscraping.ai/ai/fields', {
params: {
api_key: API_KEY,
url: reviewPageUrl,
fields: JSON.stringify({
company_name: 'Company name',
overall_rating: 'Overall rating out of 5',
total_reviews: 'Total number of reviews',
recommend_to_friend: 'Percentage who recommend',
ceo_approval: 'CEO approval rating',
culture_rating: 'Culture & values rating',
worklife_rating: 'Work-life balance rating',
compensation_rating: 'Compensation & benefits rating',
career_rating: 'Career opportunities rating',
management_rating: 'Senior management rating'
})
}
});
console.log(companyData.data);
// {
// "company_name": "Tech Corp",
// "overall_rating": 4.2,
// "total_reviews": 1547,
// "recommend_to_friend": "78%",
// "ceo_approval": "85%",
// "culture_rating": 4.3,
// "worklife_rating": 3.8,
// "compensation_rating": 4.1,
// "career_rating": 4.0,
// "management_rating": 3.7
// }
// Analyze recent review sentiment
const sentimentAnalysis = await axios.get('https://api.webscraping.ai/ai/question', {
params: {
api_key: API_KEY,
url: reviewPageUrl,
question: 'What are the most common positive and negative themes in recent reviews? What do employees like most and complain about most?'
}
});
curl -G "https://api.webscraping.ai/ai/fields" \
--data-urlencode "api_key=your_api_key" \
--data-urlencode "url=https://review-site.com/company/tech-corp" \
--data-urlencode 'fields={"overall_rating":"Rating out of 5","total_reviews":"Number of reviews","culture_rating":"Culture rating","compensation_rating":"Comp rating"}'
# Analyze sentiment themes
curl -G "https://api.webscraping.ai/ai/question" \
--data-urlencode "api_key=your_api_key" \
--data-urlencode "url=https://review-site.com/company/tech-corp" \
--data-urlencode "question=What are the common themes in employee reviews?"
Track employee sentiment and address issues
Understand candidate perceptions
Assess company culture before investing
Monitor competitor employer brands
More HR and review monitoring solutions
Get started with 1,000 free API credits. No credit card required.