Skip to main content
POST
/
api
/
v1
/
scraper
/
linkedin
/
company
LinkedIn Company
curl --request POST \
  --url https://api.example.com/api/v1/scraper/linkedin/company \
  --header 'Content-Type: application/json' \
  --data '
{
  "url": "<string>"
}
'
{
  "error": "Invalid LinkedIn company URL format"
}

Company Documentation

Field definitions and technical specifications

Description

Extract comprehensive company information from LinkedIn including industry, size, locations, and company details.
See Company Documentation for detailed field definitions and data formats.

Authentication

This endpoint requires Bearer authentication. Include your API key in the Authorization header.
Authorization: Bearer YOUR_API_KEY

Request Body

url
string
required
The LinkedIn company URL to scrapeExample: https://www.linkedin.com/company/company-name

Request Example

{
  "url": "https://www.linkedin.com/company/company-name"
}

Response

id
integer
Unique identifier for the scraped company
url
string
The LinkedIn company URL
name
string
Company name
industry
string
Primary industry
company_size
string
Company size range (e.g., “51-200 employees”)
headquarters
string
Headquarters location
type
string
Company type (e.g., “Public”, “Private”, “Non-profit”)
founded
string
Year founded
specialties
array
Array of company specialties (strings)
about
string
Company description
website
string
Company website URL
phone
string
Contact phone number
linkedin_url
string
LinkedIn company page URL
twitter_url
string
Twitter profile URL
facebook_url
string
Facebook page URL
employee_count
integer
Approximate number of employees
locations
array
Array of company locations (strings)
scraped_at
string
Timestamp when the company was scraped
created_at
string
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