# Enrich a list of companies from LinkedIn, no login

**Use case:** 

Turn LinkedIn company URLs into structured records: website, followers, locations and recent posts. Four companies in 80 seconds, no account, no cookies.

## Input

```json
{
  "companyUrls": [
    "https://www.linkedin.com/company/stripe",
    "https://www.linkedin.com/company/figma",
    "https://www.linkedin.com/company/notionhq",
    "https://www.linkedin.com/company/vercel"
  ],
  "companyNames": [
    "Stripe",
    "OpenAI"
  ],
  "extractEmployees": false,
  "employeeSeniority": [
    "c_suite",
    "vp",
    "director"
  ],
  "maxEmployeesPerCompany": 10,
  "enableAiEnrichment": false,
  "maxResults": 20,
  "proxyConfiguration": {
    "useApifyProxy": true,
    "apifyProxyGroups": [
      "RESIDENTIAL"
    ]
  }
}
```

## Output

```json
{
  "company.name": {
    "label": "Company",
    "format": "text"
  },
  "company.industry": {
    "label": "Industry",
    "format": "text"
  },
  "company.company_size": {
    "label": "Size",
    "format": "text"
  },
  "company.headquarters": {
    "label": "HQ",
    "format": "text"
  },
  "metrics.follower_count": {
    "label": "Followers",
    "format": "number"
  },
  "metrics.employee_growth_6mo_pct": {
    "label": "Growth %",
    "format": "number"
  }
}
```

## About this Actor

This example demonstrates how to use [LinkedIn Company Enrichment API — No Login Required](https://apify.com/zhorex/linkedin-company-enrichment) with a specific input configuration. Visit the [Actor detail page](https://apify.com/zhorex/linkedin-company-enrichment) to learn more, explore other use cases, and run it yourself.