> ## 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 Recruiter Lite

> Search and extract profiles from a LinkedIn Recruiter Lite Search.

To effectively utilize the LinkedIn Recruiter Lite Search API, follow these steps to extract valuable profile information.

<Steps>
  <Step title="Navigate to LinkedIn Recruiter Lite Search">
    Go to LinkedIn Recruiter Lite Search [https://www.linkedin.com/talent/search](https://www.linkedin.com/talent/search).
  </Step>

  <Step title="Apply Filters">
    Customize your search by applying the necessary filters.
  </Step>

  <Step title="Copy URL">Copy the URL from your browser's address bar.</Step>

  <Step title="Paste URL">
    Paste the copied URL into the provided input field.
  </Step>
</Steps>

### Inputs

<ParamField path="linkedin_recruiter_search_url" type="string" required={true} placeholder="LinkedIn Recruiter Search URL">
  A LinkedIn Recruiter Search URL should start with
  '[https://www.linkedin.com/recruiter/smartsearch](https://www.linkedin.com/recruiter/smartsearch)?' or
  '[https://www.linkedin.com/talent/search](https://www.linkedin.com/talent/search)?'
</ParamField>

### Parameters

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

### Output Fields

The API returns the following fields:

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

    <ResponseField name="connection_degree" type="string">
      The degree of connection
    </ResponseField>

    <ResponseField name="education" type="string">
      Educational background
    </ResponseField>

    <ResponseField name="experiences" type="string">
      Professional experiences
    </ResponseField>

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

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

    <ResponseField name="headline" type="string">
      Profile headline
    </ResponseField>

    <ResponseField name="industry" type="string">
      Industry of the profile
    </ResponseField>

    <ResponseField name="job_seeker" type="boolean">
      Indicates if the profile is a job seeker
    </ResponseField>

    <ResponseField name="job_title" type="string">
      Current job title
    </ResponseField>

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

    <ResponseField name="linkedin_people_post_search_url" type="string">
      LinkedIn post-search URL
    </ResponseField>

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

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

    <ResponseField name="location" type="string">
      Location of the profile
    </ResponseField>

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

    <ResponseField name="sales_navigator_profile_id" type="string">
      Sales Navigator profile ID
    </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",
    "education": "string",
    "experiences": "string",
    "first_name": "string",
    "full_name": "string",
    "headline": "string",
    "industry": "string",
    "job_seeker": "boolean",
    "job_title": "string",
    "last_name": "string",
    "linkedin_people_post_search_url": "string",
    "linkedin_profile_id": "string",
    "linkedin_profile_url": "string",
    "location": "string",
    "profile_image_url": "string",
    "sales_navigator_profile_id": "string"
  }
  ```
</Accordion>

<Info>
  Ensure that the LinkedIn Recruiter Search URL is correctly formatted to avoid
  errors during the extraction process.
</Info>
