# LinkedIn Company Data API

**Use case:** 

Pull structured LinkedIn company data by URL. Get industry, employee count, headquarters, website, and more as clean JSON through a simple API call.

## Input

```json
{
  "companyUrls": [
    "https://www.linkedin.com/company/apple",
    "https://www.linkedin.com/company/google"
  ]
}
```

## Output

```json
{
  "linkedinOrgId": {
    "label": "Org ID",
    "format": "text"
  },
  "linkedinUrl": {
    "label": "LinkedIn URL",
    "format": "link"
  },
  "name": {
    "label": "Company Name",
    "format": "text"
  },
  "logo": {
    "label": "Logo",
    "format": "image"
  },
  "coverImage": {
    "label": "Cover Image",
    "format": "image"
  },
  "followerCount": {
    "label": "Followers",
    "format": "text"
  },
  "website": {
    "label": "Website",
    "format": "link"
  },
  "industry": {
    "label": "Industry",
    "format": "object"
  },
  "type": {
    "label": "Type",
    "format": "text"
  },
  "size": {
    "label": "Company Size",
    "format": "object"
  },
  "employeeCount": {
    "label": "Employee Count",
    "format": "text"
  },
  "headquarters": {
    "label": "Headquarters",
    "format": "text"
  },
  "foundedOn": {
    "label": "Founded",
    "format": "text"
  },
  "specialities": {
    "label": "Specialities",
    "format": "array"
  },
  "description": {
    "label": "Description",
    "format": "text"
  },
  "slogan": {
    "label": "Slogan",
    "format": "text"
  },
  "locations": {
    "label": "Office Locations",
    "format": "array"
  },
  "jobSearchUrl": {
    "label": "Job Search URL",
    "format": "link"
  }
}
```

## About this Actor

This example demonstrates how to use [LinkedIn Company Scraper](https://apify.com/crawlworks/linkedin-company-scraper) with a specific input configuration. Visit the [Actor detail page](https://apify.com/crawlworks/linkedin-company-scraper) to learn more, explore other use cases, and run it yourself.