Company Documentation
Field definitions and technical specifications
Description
Extract comprehensive company information from LinkedIn including industry, size, locations, and company details.
Authentication
This endpoint requires Bearer authentication. Include your API key in the Authorization header.
Authorization: Bearer YOUR_API_KEY
Request Body
The LinkedIn company URL to scrapeExample: https://www.linkedin.com/company/company-name
Request Example
{
"url": "https://www.linkedin.com/company/company-name"
}
Response
Unique identifier for the scraped company
Company size range (e.g., “51-200 employees”)
Company type (e.g., “Public”, “Private”, “Non-profit”)
Array of company specialties (strings)
LinkedIn company page URL
Approximate number of employees
Array of company locations (strings)
Timestamp when the company was scraped
Timestamp when the record was created
Response Example
{
"id": 1,
"url": "https://www.linkedin.com/company/tech-company",
"name": "Tech Company Inc.",
"industry": "Information Technology and Services",
"company_size": "501-1000 employees",
"headquarters": "San Francisco, CA",
"type": "Private",
"founded": "2015",
"specialties": [
"Cloud Computing",
"Artificial Intelligence",
"Data Analytics",
"Software Development"
],
"about": "Tech Company Inc. is a leading provider of cloud-based solutions...",
"website": "https://www.techcompany.com",
"phone": "+1-415-555-0100",
"linkedin_url": "https://www.linkedin.com/company/tech-company",
"twitter_url": "https://twitter.com/techcompany",
"facebook_url": "https://facebook.com/techcompany",
"employee_count": 750,
"locations": [
"San Francisco, CA",
"New York, NY",
"Austin, TX",
"London, UK"
],
"scraped_at": "2025-01-10T12:00:00Z",
"created_at": "2025-01-10T12:00:00Z"
}
Error Responses
{
"error": "Invalid LinkedIn company URL format"
}
Company Documentation
Field definitions and technical specifications