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

> Extract a list of event attendees while being an admin or an attendee of the event.

This action allows you to extract information about attendees of a LinkedIn event. To use this action, you must be either the admin of the event or an attendee. The maximum number of attendees that can be extracted is 1000, due to LinkedIn's limitations. You can access up to 100 pages, each containing 10 attendees per page.

<Warning>
  The maximum number of attendees that can be extracted is 1000, which is
  limited by LinkedIn.
</Warning>

### Inputs

<ParamField path="linkedin_event_url" type="string" required={true} primary={true}>
  A LinkedIn event URL should look like
  "[https://www.linkedin.com/events/6578957872855689398650/](https://www.linkedin.com/events/6578957872855689398650/)".
</ParamField>

### Parameters

<ParamField path="parameters" type="object">
  No additional parameters are required for this action.
</ParamField>

### Output Fields

The extracted data will include the following fields:

<ResponseField>
  <Expandable title="properties">
    <ResponseField name="company_name" type="string">
      The name of the company associated with the attendee.
    </ResponseField>

    <ResponseField name="connection_degree" type="string">
      The degree of connection with the attendee.
    </ResponseField>

    <ResponseField name="current_title" type="string">
      The current job title of the attendee.
    </ResponseField>

    <ResponseField name="email" type="string">
      The email address of the attendee.
    </ResponseField>

    <ResponseField name="extracted_at" type="string">
      The timestamp when the data was extracted.
    </ResponseField>

    <ResponseField name="first_name" type="string">
      The first name of the attendee.
    </ResponseField>

    <ResponseField name="full_name" type="string">
      The full name of the attendee.
    </ResponseField>

    <ResponseField name="headline" type="string">
      The LinkedIn headline of the attendee.
    </ResponseField>

    <ResponseField name="job_title" type="string">
      The job title of the attendee.
    </ResponseField>

    <ResponseField name="last_name" type="string">
      The last name of the attendee.
    </ResponseField>

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

    <ResponseField name="linkedin_profile_handle" type="string">
      The LinkedIn profile handle of the attendee.
    </ResponseField>

    <ResponseField name="linkedin_profile_url" type="string">
      The LinkedIn profile URL of the attendee.
    </ResponseField>

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

    <ResponseField name="number_shared_connections" type="integer">
      The number of shared connections with the attendee.
    </ResponseField>

    <ResponseField name="profile_image_url" type="string">
      The URL of the attendee's profile image.
    </ResponseField>

    <ResponseField name="sales_navigator_profile_id" type="string">
      The Sales Navigator profile ID of the attendee.
    </ResponseField>

    <ResponseField name="shared_connection_profile_urls" type="array">
      The URLs of shared connection profiles.
    </ResponseField>

    <ResponseField name="shared_connection_search_url" type="string">
      The search URL for shared connections.
    </ResponseField>

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

Below is the JSON schema for the output fields:

<Accordion title="Show JSON Output Schema">
  ```json
  {
      "company_name": "string",
      "connection_degree": "string",
      "current_title": "string",
      "email": "string",
      "extracted_at": "string",
      "first_name": "string",
      "full_name": "string",
      "headline": "string",
      "job_title": "string",
      "last_name": "string",
      "linkedin_event_url": "string",
      "linkedin_profile_handle": "string",
      "linkedin_profile_url": "string",
      "location": "string",
      "number_shared_connections": "integer",
      "profile_image_url": "string",
      "sales_navigator_profile_id": "string",
      "shared_connection_profile_urls": "array",
      "shared_connection_search_url": "string",
      "tracking_id": "string"
  }
  ```
</Accordion>
