# LinkedIn Profile Data Extraction Without Cookies

**Use case:** 

Collects detailed public information from specified LinkedIn profiles. Returns names, headlines, locations, experience, education, and recent posts.

## Input

```json
{
  "profile_urls": [
    "https://www.linkedin.com/in/weam-taie-548535218/",
    "https://www.linkedin.com/in/williamhgates/",
    "https://www.linkedin.com/in/kareem-megally-521754348/",
    "https://www.linkedin.com/in/mina-safwat-9a1a3b1bb/"
  ],
  "proxy_country": "US,GB,DE,CA,FR",
  "max_concurrency": 5,
  "include_raw": false
}
```

## Output

```json
{
  "url": {
    "label": "Profile URL",
    "format": "link"
  },
  "name": {
    "label": "Name",
    "format": "text"
  },
  "headline": {
    "label": "Headline",
    "format": "text"
  },
  "tagline": {
    "label": "Tagline",
    "format": "text"
  },
  "location": {
    "label": "Location",
    "format": "text"
  },
  "country": {
    "label": "Country",
    "format": "text"
  },
  "follower_count": {
    "label": "Followers",
    "format": "number"
  },
  "image": {
    "label": "Photo",
    "format": "image"
  },
  "description": {
    "label": "About",
    "format": "text"
  },
  "experience": {
    "label": "Experience",
    "format": "array"
  },
  "education": {
    "label": "Education",
    "format": "array"
  },
  "status": {
    "label": "HTTP",
    "format": "number"
  },
  "used_auth": {
    "label": "li_at fallback",
    "format": "boolean"
  },
  "is_not_found_page": {
    "label": "404 page",
    "format": "boolean"
  },
  "error": {
    "label": "Error",
    "format": "text"
  }
}
```

## About this Actor

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