How to Call the LinkedIn Company API
Simple REST API endpoint. Just make a GET request with your API key and get structured data back.
GETCode Examples
cURL
curl -X GET 'https://api.parseium.com/v1/linkedin-company?url=https://www.linkedin.com/company/company-name&api_key=YOUR_API_KEY'TypeScript
const response = await fetch(`https://api.parseium.com/v1/linkedin-company?url=https://www.linkedin.com/company/company-name&api_key=${process.env.PARSEIUM_API_KEY}`, {
method: 'GET',
});
const data = await response.json();
console.log(data);Python
import requests
import os
api_key = os.environ['PARSEIUM_API_KEY']
response = requests.get(
f'https://api.parseium.com/v1/linkedin-company?url=https://www.linkedin.com/company/company-name&api_key={api_key}'
)
data = response.json()
print(data)Query Parameters
Pass parameters in the URL query string:
url=https://www.linkedin.com/company/company-nameResponse Schema
The API returns structured JSON data with the following schema:
{
"id": {
"type": "string"
},
"name": {
"type": "string"
},
"description": {
"type": "string"
},
"location": {
"city": {
"type": "string"
},
"state": {
"type": "string"
},
"country": {
"type": "string"
}
},
"employee_count": {
"type": "number"
},
"followers": {
"type": "number"
},
"website": {
"type": "string"
},
"logo": {
"type": "string"
},
"cover_image": {
"type": "string"
},
"slogan": {
"type": "string"
},
"similar_pages": [
{
"link": {
"type": "string"
},
"name": {
"type": "string"
},
"image": {
"type": "string"
}
}
],
"industry": {
"type": "string"
},
"size": {
"type": "string"
},
"founded": {
"type": "number"
},
"headquarters": {
"type": "string"
},
"type": {
"type": "string"
},
"specialties": [
{
"type": "string"
}
],
"funding": {
"number_of_rounds": {
"type": "number"
},
"last_round": {
"type": {
"type": "string"
},
"date": {
"type": "string"
},
"amount": {
"type": "string"
}
},
"investors": [
{
"name": {
"type": "string"
},
"crunchbase_url": {
"type": "string"
},
"image": {
"type": "string"
}
}
]
},
"employees": [
{
"name": {
"type": "string"
},
"title": {
"type": "string"
},
"link": {
"type": "string"
},
"image": {
"type": "string"
}
}
],
"posts": [
{
"url": {
"type": "string"
},
"date_published": {
"type": "string"
},
"text": {
"type": "string"
}
}
]
}Need more details? Check out our full API documentation for authentication, error handling, rate limits, and advanced options.
Use Cases for LinkedIn Company
See how developers use this API in production applications.
Company Research
Research companies for partnerships, sales prospects, or competitive analysis. Get detailed company information including size, industry, and location.
Market Intelligence
Track company growth, funding rounds, and employee changes. Monitor industry trends and competitive landscape.
Lead Generation
Discover key employees, company size, and contact information for targeted outreach and business development.
Simple, Transparent Pricing
Every API call to LinkedIn Company costs 1 credit
Choose a plan based on your monthly usage. All plans include access to all APIs.
~150,000 API calls/mo
- 150,000 credits/month
- Email support
- 1,000 requests/day
- Priority processing
~700,000 API calls/mo
- 700,000 credits/month
- Priority support
- 10,000 requests/day
- Advanced features
~3,000,000 API calls/mo
- 3M credits/month
- Dedicated support
- Unlimited requests
- Custom integrations
Need more? Check out our for enterprise options and custom plans.
Frequently Asked Questions
Common questions about the LinkedIn Company API.
What company data is included?
Company identity (name, description, logo), location, employee count, followers, website, industry, size, founding year, specialties, funding information (if available), sample employees, and recent posts.
What data is publicly available?
This API only returns publicly available data visible in an incognito browser. Some details may be limited based on LinkedIn's privacy settings for the specific company page.
Is funding information always available?
Funding information is only included when LinkedIn has integrated Crunchbase data for the company. Not all companies will have funding details available.
How many employees are returned?
The API returns a sample of employees visible on the public company page, typically including leadership and featured employees. This is not a complete employee directory.
Related APIs
Explore other ready-to-use APIs that might interest you.