# Extract Company Firmographics from LinkedIn

**Use case:** 

Pull firmographics from a company URL: industry, employee size band, headquarters, specialties, and organization type. One row per company.

## Input

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

## Output

```json
{
  "logo": {
    "label": "Logo",
    "format": "string"
  },
  "result_type": {
    "label": "Result Type",
    "format": "string"
  },
  "name": {
    "label": "Name",
    "format": "string"
  },
  "industries": {
    "label": "Industries",
    "format": "array"
  },
  "companySize": {
    "label": "Company Size",
    "format": "string"
  },
  "headquarters": {
    "label": "Headquarters",
    "format": "string"
  },
  "followers": {
    "label": "Followers",
    "format": "integer"
  },
  "publicUrl": {
    "label": "Public URL",
    "format": "string"
  },
  "summary": {
    "label": "Summary",
    "format": "string"
  }
}
```

## About this Actor

This example demonstrates how to use [LinkedIn Company API | Firmographics & Sales Intelligence](https://apify.com/johnvc/linkedin-company-api) with a specific input configuration. Visit the [Actor detail page](https://apify.com/johnvc/linkedin-company-api) to learn more, explore other use cases, and run it yourself.