Indeed
Indeed Company Reviews API
Get Indeed employee reviews for an employer - title, full text, pros and cons, overall and per-category ratings, reviewer job title, location and current-employee flag, and helpful votes - plus the aggregated rating breakdown and the topic, location and job-title distributions, as JSON. 20 reviews per page. Costs 2 credits per request.
Authorizations
AuthorizationstringheaderrequiredBearer authentication header of the form Bearer <token>, where <token> is your Scavio API key (e.g. Bearer sk_live_your_key).
Body
application/jsoncompanystringrequiredindeed.com/cmp/<slug> slug or a full profile URL, 1-200 characters. Slugs are untidy and case-sensitive - Tata-Consultancy-Services-(tcs) is a real one - so copy them from a search row's company_url rather than guessing.
Example: Deloitte
pageintegerReviews page, 1-based. 20 reviews per page, and each page is a separate 2-credit request.
Request
from scavio import ScavioClient
client = ScavioClient(api_key="sk_live_your_key")
results = client.indeed.company_reviews("Deloitte", page=1)
print(results)Response