> ## 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.

# Extract LinkedIn Event

> Retrieve detailed information from LinkedIn Events, including descriptions, attendee numbers, and speaker details.

To efficiently gather data from LinkedIn Events, use the "Extract LinkedIn Event" action. This action is ideal for obtaining comprehensive event details, which can be useful for event analysis, marketing strategies, or networking purposes.

### Inputs

<ParamField path="linkedin_event_url" type="string" required={true} placeholder="Linkedin Event URL">
  Input should contain a valid LinkedIn Event URL:
  [https://www.linkedin.com/events/EVENT\_ID](https://www.linkedin.com/events/EVENT_ID).
</ParamField>

### Parameters

<ParamField path="parameters" type="object">
  Currently, there are no additional parameters required for this action.
</ParamField>

### Output Fields

The action returns a structured set of data fields related to the LinkedIn event:

<ResponseField>
  <Expandable title="properties">
    <ResponseField name="company_name" type="string">
      The name of the company hosting the event
    </ResponseField>

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

    <ResponseField name="event_end_datetime" type="string">
      The end date and time of the event
    </ResponseField>

    <ResponseField name="event_external_link" type="string">
      External link related to the event
    </ResponseField>

    <ResponseField name="event_information" type="string">
      Detailed information about the event
    </ResponseField>

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

    <ResponseField name="event_start_datetime" type="string">
      The start date and time of the event
    </ResponseField>

    <ResponseField name="first_name" type="string">
      First name of the speaker
    </ResponseField>

    <ResponseField name="full_name" type="string">
      Full name of the speaker
    </ResponseField>

    <ResponseField name="last_name" type="string">
      Last name of the speaker
    </ResponseField>

    <ResponseField name="linkedin_company_id" type="string">
      LinkedIn ID of the company
    </ResponseField>

    <ResponseField name="linkedin_company_url" type="string">
      The LinkedIn company URL
    </ResponseField>

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

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

    <ResponseField name="number_attendees" type="integer">
      The number of attendees for the event
    </ResponseField>

    <ResponseField name="speakers" type="array">
      List of speakers at the event
    </ResponseField>
  </Expandable>
</ResponseField>

Below is the JSON schema for the output fields:

<Accordion title="Show JSON Output Schema">
  ```json
  {
      "company_name": "string",
      "created_at": "string",
      "event_end_datetime": "string",
      "event_external_link": "string",
      "event_information": "string",
      "event_name": "string",
      "event_start_datetime": "string",
      "first_name": "string",
      "full_name": "string",
      "last_name": "string",
      "linkedin_company_id": "string",
      "linkedin_company_url": "string",
      "linkedin_event_id": "string",
      "linkedin_event_url": "string",
      "number_attendees": "integer",
      "speakers": "array"
  }
  ```
</Accordion>

<Info>
  This action is essential for extracting detailed event data from LinkedIn,
  which can be leveraged for various business and networking purposes.
</Info>
