# Extract a LinkedIn event by URL

**Use case:** 

Resolve a real public LinkedIn event URL into a typed event record with indexed title, description, schedule, format, and event identity.

## Input

```json
{
  "queries": [],
  "startUrls": [
    {
      "url": "https://www.linkedin.com/events/7038508574142074880/"
    }
  ],
  "maxItems": 1,
  "maxPagesPerQuery": 1,
  "market": "en-US",
  "requestDelayMillis": 1500
}
```

## Output

```json
{
  "title": {
    "label": "Event",
    "format": "string"
  },
  "dateText": {
    "label": "Date / time",
    "format": "string"
  },
  "organizerName": {
    "label": "Organizer",
    "format": "string"
  },
  "location": {
    "label": "Location",
    "format": "string"
  },
  "attendanceCount": {
    "label": "Attendance",
    "format": "integer"
  },
  "isVirtual": {
    "label": "Virtual",
    "format": "boolean"
  },
  "registrationUrl": {
    "label": "Registration",
    "format": "string"
  },
  "eventUrl": {
    "label": "LinkedIn event",
    "format": "string"
  },
  "description": {
    "label": "Description",
    "format": "string"
  },
  "sourceQuery": {
    "label": "Source query",
    "format": "string"
  },
  "scrapedAt": {
    "label": "Scraped at",
    "format": "string"
  }
}
```

## About this Actor

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