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

# Visit Sales Navigator People Profile

> Visit and extract information from a specific LinkedIn profile on Sales Navigator.

This action allows you to visit a LinkedIn Sales Navigator profile and extract detailed information about the individual, such as their current job, education, and contact details. This can be particularly useful for sales professionals looking to gather insights on potential leads or partners.

<Steps>
  <Step title="Navigate to Profile">
    Go to a Sales Navigator profile, such as [this
    example](https://www.linkedin.com/sales/people/ACwAABCtPWcBPhifa7qOAXJvLHQ56dTmCdC8ov8,)
  </Step>

  <Step title="Copy URL">Copy the URL from your browser's address bar.</Step>
  <Step title="Paste URL">Paste the URL into the provided input field.</Step>
</Steps>

### Inputs

<ParamField path="sales_navigator_profile_url" type="string" required={true} primary={true}>
  A Sales Navigator Profile URL should start with
  '[https://www.linkedin.com/sales/people/](https://www.linkedin.com/sales/people/)'.
</ParamField>

### Parameters

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

### Output Fields

The action returns a comprehensive set of fields extracted from the profile:

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

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

    <ResponseField name="current_job_time_period" type="string">
      The duration of the current job.
    </ResponseField>

    <ResponseField name="description" type="string">
      A brief description of the person.
    </ResponseField>

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

    <ResponseField name="email" type="string">
      Email address if available.
    </ResponseField>

    <ResponseField name="experiences" type="array">
      List of past job experiences.
    </ResponseField>

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

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

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

    <ResponseField name="interests" type="array">
      List of interests.
    </ResponseField>

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

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

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

    <ResponseField name="linkedin_company_url" type="string">
      LinkedIn URL of the company.
    </ResponseField>

    <ResponseField name="linkedin_profile_handle" type="string">
      Profile handle on LinkedIn.
    </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 person.
    </ResponseField>

    <ResponseField name="number_connections" type="integer">
      Number of connections.
    </ResponseField>

    <ResponseField name="phone" type="string">
      Phone number if available.
    </ResponseField>

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

    <ResponseField name="sales_navigator_company_id" type="string">
      Sales Navigator company ID.
    </ResponseField>

    <ResponseField name="sales_navigator_company_url" type="string">
      Sales Navigator company URL.
    </ResponseField>

    <ResponseField name="sales_navigator_profile_id" type="string">
      Sales Navigator profile ID.
    </ResponseField>

    <ResponseField name="sales_navigator_profile_url" type="string">
      Sales Navigator profile URL.
    </ResponseField>

    <ResponseField name="sales_navigator_school_url" type="string">
      Sales Navigator school URL.
    </ResponseField>

    <ResponseField name="school_name" type="string">
      Name of the school attended.
    </ResponseField>

    <ResponseField name="skills" type="array">
      List of skills.
    </ResponseField>

    <ResponseField name="twitter" type="string">
      Twitter handle if available.
    </ResponseField>

    <ResponseField name="website" type="string">
      Website URL if available.
    </ResponseField>

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

    <ResponseField name="recently_hired" type="boolean">
      Indicates if the person was recently hired.
    </ResponseField>

    <ResponseField name="recently_promoted" type="boolean">
      Indicates if the person was recently promoted.
    </ResponseField>

    <ResponseField name="past_company_name" type="string">
      Name of a past company.
    </ResponseField>

    <ResponseField name="past_job_title" type="string">
      Title of a past job.
    </ResponseField>

    <ResponseField name="past_sales_navigator_company_id" type="string">
      Sales Navigator ID of a past company.
    </ResponseField>

    <ResponseField name="past_linkedin_company_id" type="string">
      LinkedIn ID of a past company.
    </ResponseField>

    <ResponseField name="past_linkedin_company_url" type="string">
      LinkedIn URL of a past company.
    </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_job_time_period": "string",
    "description": "string",
    "education": "string",
    "email": "string",
    "experiences": "array",
    "first_name": "string",
    "full_name": "string",
    "headline": "string",
    "interests": "array",
    "job_title": "string",
    "last_name": "string",
    "linkedin_company_id": "string",
    "linkedin_company_url": "string",
    "linkedin_profile_handle": "string",
    "linkedin_profile_id": "string",
    "linkedin_profile_url": "string",
    "location": "string",
    "number_connections": "integer",
    "phone": "string",
    "profile_image_url": "string",
    "sales_navigator_company_id": "string",
    "sales_navigator_company_url": "string",
    "sales_navigator_profile_id": "string",
    "sales_navigator_profile_url": "string",
    "sales_navigator_school_url": "string",
    "school_name": "string",
    "skills": "array",
    "twitter": "string",
    "website": "string",
    "linkedin_people_post_search_url": "string",
    "recently_hired": "boolean",
    "recently_promoted": "boolean",
    "past_company_name": "string",
    "past_job_title": "string",
    "past_sales_navigator_company_id": "string",
    "past_linkedin_company_id": "string",
    "past_linkedin_company_url": "string"
  }
  ```
</Accordion>
