> ## Documentation Index
> Fetch the complete documentation index at: https://v3.captaindata.com/llms.txt
> Use this file to discover all available pages before exploring further.

# Search LinkedIn Events

> Search for events on LinkedIn

This action allows you to search for events on LinkedIn using a specific search URL. It is useful for gathering information about upcoming events, including details such as event names, descriptions, dates, and locations.

<Steps>
  <Step title="Step 1">Navigate to a LinkedIn Events search page.</Step>
  <Step title="Step 2">Copy the URL from your browser.</Step>
  <Step title="Step 3">Paste the URL into the provided input field.</Step>
</Steps>

### Inputs

<ParamField path="linkedin_event_search_url" type="string" required={true} primary={true}>
  A LinkedIn Event Search URL should start with
  '[https://www.linkedin.com/search/results/events](https://www.linkedin.com/search/results/events)'.
</ParamField>

### Parameters

<ParamField path="max_results" type="number" default={100} minimum={0} maximum={1000}>
  The maximum number of events to extract per input.
</ParamField>

### Output Fields

The action returns the following fields:

<ResponseField>
  <Expandable title="properties">
    <ResponseField name="attendees" type="string">
      The number of attendees for the event
    </ResponseField>

    <ResponseField name="date" type="string">
      The date of the event
    </ResponseField>

    <ResponseField name="description" type="string">
      The description of the event
    </ResponseField>

    <ResponseField name="event_name" type="string">
      The name of the event
    </ResponseField>

    <ResponseField name="linkedin_event_id" type="string">
      The LinkedIn event ID
    </ResponseField>

    <ResponseField name="linkedin_event_url" type="string">
      The URL of the LinkedIn event
    </ResponseField>

    <ResponseField name="location" type="string">
      The location of the event
    </ResponseField>

    <ResponseField name="tracking_id" type="string">
      The tracking ID for the event
    </ResponseField>
  </Expandable>
</ResponseField>

Below is the JSON schema for the output fields:

<Accordion title="Show JSON Output Schema">
  ```json
  {
    "attendees": "string",
    "date": "string",
    "description": "string",
    "event_name": "string",
    "linkedin_event_id": "string",
    "linkedin_event_url": "string",
    "location": "string",
    "tracking_id": "string"
  }
  ```
</Accordion>
