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

> Search for schools on LinkedIn

This action allows you to search for schools on LinkedIn using a specific search URL. It is useful for extracting detailed information about educational institutions listed on LinkedIn.

<Steps>
  <Step title="Step 1">
    Navigate to a LinkedIn Schools search
    [https://www.linkedin.com/search/results/schools](https://www.linkedin.com/search/results/schools)
  </Step>

  <Step title="Step 2">
    Choose a <code>Schools</code> search and apply your desired filters.
  </Step>

  <Step title="Step 3">Copy the URL from your browser.</Step>
  <Step title="Step 4">Paste the URL into the provided input field.</Step>
</Steps>

### Inputs

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

### Parameters

<ParamField path="max_results" type="number" default={100} minimum={1} maximum={1000}>
  Maximum number of schools to extract per input.
</ParamField>

### Output Fields

The action returns the following fields:

<ResponseField>
  <Expandable title="properties">
    <ResponseField name="description" type="string">
      The description of the school
    </ResponseField>

    <ResponseField name="linkedin_school_handle" type="string">
      The LinkedIn handle of the school
    </ResponseField>

    <ResponseField name="linkedin_school_id" type="string">
      The LinkedIn ID of the school
    </ResponseField>

    <ResponseField name="linkedin_school_url" type="string">
      The LinkedIn URL of the school
    </ResponseField>

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

    <ResponseField name="members" type="integer">
      The number of members associated with the school
    </ResponseField>

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

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

Below is the JSON schema for the output fields:

<Accordion title="Show JSON Output Schema">
  ```json
  {
    "description": "string",
    "linkedin_school_handle": "string",
    "linkedin_school_id": "string",
    "linkedin_school_url": "string",
    "location": "string",
    "members": "integer",
    "school_name": "string",
    "tracking_id": "string"
  }
  ```
</Accordion>

<Note>
  Ensure that the URL is correctly formatted to avoid errors in data extraction.
</Note>
