> ## 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 LinkedIn Company Employees Scraper settings

Configure your **LinkedIn Company Employees Scraper** squid settings.

## Headers

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

<ParamField header="Content-Type" type="string" required>
  Must be application/json. Value: `application/json`
</ParamField>

## Squid Parameters

| Parameter                      | Type    | Default | Description                                                                 |
| ------------------------------ | ------- | ------- | --------------------------------------------------------------------------- |
| keyword                        | string  | —       | Free-text filter applied to the employee search, e.g. 'engineer' or 'sales' |
| max\_results                   | integer | 1000    | Maximum number of employees to scrape per company                           |
| max\_unique\_results\_per\_run | integer | —       | Max unique results across all tasks in the run                              |

## Code Examples

<CodeGroup>
  ```bash cURL theme={null}
  curl -X POST https://api.lobstr.io/v1/squids/08ac061ab290b5ae0f831e086c98d4b5 \
    -H "Authorization: Token YOUR_API_KEY" \
    -H "Content-Type: application/json" \
    -d '{
      "keyword": "engineer",
      "max_results": 1000
    }'
  ```

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

  response = requests.post(
      "https://api.lobstr.io/v1/squids/08ac061ab290b5ae0f831e086c98d4b5",
      headers={
          "Authorization": "Token YOUR_API_KEY",
          "Content-Type": "application/json",
      },
      json={
          "keyword": "engineer",
          "max_results": 1000,
      },
  )
  print(response.json())
  ```
</CodeGroup>

## Response

```json 201 theme={null}
{"params": {"keyword": "engineer", "max_results": 1000}}
```
