> ## 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 Sales Navigator Accounts List

> Extract accounts (companies) from a list on Sales Navigator.

To extract company information from a Sales Navigator Accounts List, follow these steps:

<Steps>
  <Step title="Navigate to Sales Navigator">
    Go to a Sales Navigator Accounts List
    [https://www.linkedin.com/sales/lists/company](https://www.linkedin.com/sales/lists/company).
  </Step>

  <Step title="Copy the URL">Copy the URL from your browser.</Step>

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

A typical list URL looks like this: <a href="https://www.linkedin.com/sales/lists/company/YOUR_LIST_ID?sortCriteria=CREATED_TIME&sortOrder=DESCENDING">[https://www.linkedin.com/sales/lists/company/YOUR\_LIST\_ID?sortCriteria=CREATED\_TIME\&sortOrder=DESCENDING](https://www.linkedin.com/sales/lists/company/YOUR_LIST_ID?sortCriteria=CREATED_TIME\&sortOrder=DESCENDING)</a>.

### Inputs

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

### Parameters

<ParamField path="max_results" type="number" default={1000}>
  Maximum number of results to extract. The system's limit is 1000 results.
</ParamField>

### Output Fields

The extracted data will include the following fields:

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

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

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

    <ResponseField name="number_employees" type="integer">
      The number of employees in the company
    </ResponseField>

    <ResponseField name="sales_navigator_company_id" type="string">
      The Sales Navigator ID of the company
    </ResponseField>

    <ResponseField name="sales_navigator_company_list_url" type="string">
      The URL of the Sales Navigator company list
    </ResponseField>

    <ResponseField name="sales_navigator_company_url" type="string">
      The Sales Navigator URL of the company
    </ResponseField>

    <ResponseField name="sales_navigator_employees_url" type="string">
      The Sales Navigator URL for the company's employees
    </ResponseField>
  </Expandable>
</ResponseField>

Below is the JSON schema for the output fields:

<Accordion title="Show JSON Output Schema">
  ```json
  {
    "category": "string",
    "company_name": "string",
    "location": "string",
    "number_employees": "integer",
    "sales_navigator_company_id": "string",
    "sales_navigator_company_list_url": "string",
    "sales_navigator_company_url": "string",
    "sales_navigator_employees_url": "string"
  }
  ```
</Accordion>

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