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
| Parameter | Type | Required | Description |
|---|---|---|---|
linkedin_url | string | Yes | LinkedIn company URL |
Example Request
- cURL
- Python
- Node.js
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'
import requests
url = "https://api.infoplug.io/get-company-insights"
params = {
"linkedin_url": "https://www.linkedin.com/company/apple/"
}
headers = {
"X-INFOPLUG-API-KEY": "YOUR_API_KEY"
}
response = requests.get(url, headers=headers, params=params)
print(response.json())
const response = await fetch(
'https://api.infoplug.io/get-company-insights?linkedin_url=https://www.linkedin.com/company/apple/',
{
headers: {
'X-INFOPLUG-API-KEY': 'YOUR_API_KEY'
}
}
);
const data = await response.json();
console.log(data);
Example Response
- 200 OK
- 400 Bad Request
- 401 Unauthorized
{
"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"]
}
}
}
{
"message": "invalid_parameter",
"parameter": "linkedin_url",
"details": "LinkedIn URL is required"
}
{
"message": "unauthorized",
"details": "Invalid or missing API key"
}