> ## 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 School Alumnis

> Extract a school's alumni given specific criteria.

This action allows you to extract alumni profiles from a specific LinkedIn school page based on defined criteria. It is particularly useful for educational institutions, recruiters, and researchers who need to gather alumni data efficiently.

### Inputs

<ParamField path="linkedin_school_url" type="string" required={true} primary={true}>
  A LinkedIn School URL should start with '[https://www.linkedin.com/school/](https://www.linkedin.com/school/)'.
</ParamField>

### Parameters

<ParamField path="max_results" type="number" default={100}>
  Maximum number of profiles to extract per input. The default is 100, with a
  maximum limit of 30,000.
</ParamField>

### Output Fields

The action returns a comprehensive set of alumni data fields:

<ResponseField>
  <Expandable title="properties">
    <ResponseField name="connection_degree" type="string">
      The degree of connection to the profile
    </ResponseField>

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

    <ResponseField name="headline" type="string">
      The headline of the alumni's LinkedIn profile
    </ResponseField>

    <ResponseField name="linkedin_people_post_search_url" type="string">
      The LinkedIn URL for people post search
    </ResponseField>

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

    <ResponseField name="linkedin_profile_id" type="string">
      The ID of the LinkedIn profile
    </ResponseField>

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

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

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

    <ResponseField name="sales_navigator_profile_url" type="string">
      The URL of the Sales Navigator profile
    </ResponseField>

    <ResponseField name="school_name" type="string">
      The name of the school
    </ResponseField>
  </Expandable>
</ResponseField>

Below is the JSON schema for the output fields:

<Accordion title="Show JSON Output Schema">
  ```json
  {
      "connection_degree": "string",
      "full_name": "string",
      "headline": "string",
      "linkedin_people_post_search_url": "string",
      "linkedin_profile_handle": "string",
      "linkedin_profile_id": "string",
      "linkedin_profile_url": "string",
      "profile_image_url": "string",
      "sales_navigator_profile_id": "string",
      "sales_navigator_profile_url": "string",
      "school_name": "string"
  }
  ```
</Accordion>

### Specificities

<Steps>
  <Step title="Access LinkedIn School Page">
    Navigate to the LinkedIn school page and select the "Alumni" tab. Copy the
    URL from the address bar.
  </Step>

  <Step title="Set Parameters">
    Define the maximum number of profiles you wish to extract. The default is
    set to 100.
  </Step>

  <Step title="Execute Action">
    Use the extracted URL and parameters to execute the action and retrieve
    alumni data.
  </Step>
</Steps>

<Info>
  Ensure the LinkedIn School URL is correctly formatted to avoid errors during
  data extraction.
</Info>
