Indeed
Indeed Company Profile API
Get an Indeed employer profile - description, industry and sectors, headquarters, founding year, employee range, revenue band, CEO name and approval rating, overall rating with the five per-category scores, happiness scores, reported salaries by role, open roles and their locations, similar companies and the employer FAQ - as JSON. Costs 2 credits per request.
POST/api/v1/indeed/company
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
Request
from scavio import ScavioClient
client = ScavioClient(api_key="sk_live_your_key")
results = client.indeed.company("Deloitte")
print(results)Response
"company": "Deloitte",
"name": "Deloitte",
"url": "https://www.indeed.com/cmp/Deloitte",
"logo": "https://d2q79iu7y748jz.cloudfront.net/s/_squarelogo/256x256/b245a75ba4a28df29f8f1551ac296deb",
"header_image": "https://d2q79iu7y748jz.cloudfront.net/s/_headerimage/1960x400/e62bed3cf60856557ddd392fe05c7d27",
"video_url": "https://youtu.be/vRmw1Pw-KRU",
"website": "http://www.deloitte.com",
"description": "Deloitte provides industry-leading audit & assurance services, consulting, tax and advisory services to many of the world’s most admired brands—some of these companies you may know and might even inte…",
"industry": "Accounting & Tax",
"headquarters": "New York, NY",
"founded": 1850,
"employee_range": "10000_plus",
"revenue": "over_10b",
"ceo_name": "Joseph B. Ucuzoglu",
"ceo_photo": "https://d2q79iu7y748jz.cloudfront.net/s/_ceophoto/512x512/b7e9511327980d32f2851df7a3c600f1",
"ceo_approval_percent": 64,
"rating": 3.9,
"review_count": 14307,
"reviews_url": "https://www.indeed.com/cmp/Deloitte/reviews",
"happiness_score": 72,
"happiness_grade": "GREAT",
"total_jobs": 18694,
"jobs_url": "https://www.indeed.com/cmp/Deloitte/jobs",
"interview_difficulty": "MEDIUM",
"interview_duration": "About two weeks",
"interview_experience": "FAVORABLE",
},
"response_time": 1926,
"credits_used": 2,
"credits_remaining": 4820
}