> ## Documentation Index
> Fetch the complete documentation index at: https://docs.lobstr.io/llms.txt
> Use this file to discover all available pages before exploring further.

# Update Settings

> Configure the Sales Navigator Companies Scraper settings

Configure your Sales Navigator Companies Scraper squid settings. Control pagination depth and result limits.

## Headers

<ParamField header="Authorization" type="string" required>
  Your API authentication token. Value: `Token YOUR_API_KEY`
</ParamField>

<ParamField header="Content-Type" type="string" required>
  Request body format. Value: `application/json`
</ParamField>

## Scraper Parameters

Set these parameters in the `params` object:

| Parameter                          | Type    | Default   | Description                                                |
| ---------------------------------- | ------- | --------- | ---------------------------------------------------------- |
| **max\_pages**                     | integer | 100       | Maximum number of search result pages to scrape (max: 100) |
| **max\_results**                   | integer | unlimited | Maximum companies to collect per task (max: 5000)          |
| **max\_unique\_results\_per\_run** | integer | unlimited | Maximum unique results across all tasks in the run         |

## Squid Settings

Configure general squid settings:

| Setting                     | Type    | Description                                      |
| --------------------------- | ------- | ------------------------------------------------ |
| **name**                    | string  | Display name for your squid configuration        |
| **concurrency**             | integer | Number of parallel scraping threads (default: 1) |
| **export\_unique\_results** | boolean | Export only unique results (deduplicated)        |
| **to\_complete**            | boolean | Run until all tasks complete                     |
| **no\_line\_breaks**        | boolean | Remove line breaks from results                  |

## Pagination

Sales Navigator displays 25 companies per page. With `max_pages` set to 100 (default), you can collect up to 2,500 companies per search URL.

For larger datasets, use multiple search URLs with different filters.

<Tip>
  Set `max_pages` to a lower value if you only need companies from the first few pages of results.
</Tip>

<Note>
  Credits are charged per company collected (1 credit per company).
</Note>

## Code Examples

<CodeGroup>
  ```bash cURL theme={null}
  curl -X POST "https://api.lobstr.io/v1/squids/YOUR_SQUID_HASH" \
    -H "Authorization: Token YOUR_API_KEY" \
    -H "Content-Type: application/json" \
    -d '{
      "name": "Sales Navigator Companies Scraper (1)",
      "concurrency": 5,
      "export_unique_results": true,
      "to_complete": false,
      "no_line_breaks": true,
      "params": {
        "max_pages": 50,
        "max_results": 1000
      }
    }'
  ```

  ```python Python theme={null}
  import requests

  API_KEY = "YOUR_API_KEY"
  BASE_URL = "https://api.lobstr.io/v1"
  headers = {"Authorization": f"Token {API_KEY}"}

  squid_id = "YOUR_SQUID_HASH"

  # Update squid settings
  payload = {
      "name": "Sales Navigator Companies Scraper (1)",
      "concurrency": 5,
      "export_unique_results": True,
      "to_complete": False,
      "no_line_breaks": True,
      "params": {
          "max_pages": 50,      # Limit search result pages
          "max_results": 1000   # Max companies per task
      }
  }

  response = requests.post(f"{BASE_URL}/squids/{squid_id}",
      headers=headers,
      json=payload
  )

  print(f"Settings updated: {response.json()['name']}")
  ```
</CodeGroup>

## Response

```json 201 theme={null}
{
  "name": "Sales Navigator Companies Scraper (1)",
  "concurrency": 5,
  "export_unique_results": true,
  "to_complete": false,
  "no_line_breaks": true,
  "params": {
    "max_pages": 50,
    "max_results": 1000
  }
}
```
