Skip to main content

Get Company Insights

GET /get-company-insights

Get detailed insights about a company including employee growth, hiring trends, and more.

Pricing

1 credit per call.

Parameters

ParameterTypeRequiredDescription
linkedin_urlstringYesLinkedIn company URL

Example Request

curl --request GET \
--url 'https://api.infoplug.io/get-company-insights?linkedin_url=https://www.linkedin.com/company/apple/' \
--header 'X-INFOPLUG-API-KEY: YOUR_API_KEY'

Example Response

{
"data": {
"employee_count": 164000,
"employee_growth_6m": 2.5,
"employee_growth_1y": 5.2,
"median_tenure": 4.5,
"top_skills": ["Software Development", "Hardware Engineering", "Product Design"],
"top_schools": ["Stanford University", "MIT", "UC Berkeley"],
"hiring_trends": {
"current_openings": 1250,
"departments_hiring": ["Engineering", "Marketing", "Sales"]
}
}
}