> ## 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 Trustpilot Reviews Scraper settings

Configure your Trustpilot Reviews Scraper squid settings. Filter by star rating, language, date, and more to target specific review types.

## 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\_results**                   | integer | 200           | Maximum number of reviews to collect per company page                                                                                                                                                                                                                                                                                                       |
| **max\_unique\_results\_per\_run** | integer | unlimited     | Maximum unique reviews across all tasks in the run                                                                                                                                                                                                                                                                                                          |
| **sort\_by**                       | string  | recency       | Sort order: `recency`, `relevance`                                                                                                                                                                                                                                                                                                                          |
| **stars**                          | string  | all           | Filter by star rating: `all`, `1`, `2`, `3`, `4`, `5`                                                                                                                                                                                                                                                                                                       |
| **language**                       | string  | All languages | Filter by review language. Allowed values: `All languages`, `Arabic`, `Chinese (Simplified)`, `Chinese (Traditional)`, `Danish`, `Dutch`, `English`, `Finnish`, `French`, `German`, `Greek`, `Hebrew`, `Indonesian`, `Italian`, `Japanese`, `Korean`, `Norwegian`, `Polish`, `Portuguese`, `Russian`, `Spanish`, `Swedish`, `Thai`, `Turkish`, `Vietnamese` |
| **verified**                       | boolean | false         | Only return reviews from verified purchases                                                                                                                                                                                                                                                                                                                 |
| **replies**                        | boolean | false         | Include company replies in the results                                                                                                                                                                                                                                                                                                                      |
| **search**                         | string  | null          | Filter reviews by keyword                                                                                                                                                                                                                                                                                                                                   |
| **topics**                         | string  | null          | Filter by Trustpilot topic tag                                                                                                                                                                                                                                                                                                                              |
| **start\_page**                    | integer | 1             | Page number to start scraping from                                                                                                                                                                                                                                                                                                                          |
| **fetch\_since**                   | string  | null          | Stop scraping when items older than this threshold are reached (based on `published_at`). Use a relative duration (24h, 7d, 2w) or an absolute date (YYYY-MM-DD HH:MM:SS)                                                                                                                                                                                   |
| **fetch\_since\_timezone**         | string  | null          | Timezone for interpreting an absolute `fetch_since` date (e.g. `Europe/Paris`). Only applies when `fetch_since` is an absolute date — ignored for relative values like `24h` or `7d`. See [supported timezones](/docs/timezones).                                                                                                                           |

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

<Tip>
  Use `stars: 1` combined with `fetch_since: 7d` to monitor recent negative reviews for reputation management.
</Tip>

<Tip>
  Set `verified: true` to focus on reviews from confirmed customers only.
</Tip>

## 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": "Trustpilot Reviews Scraper (1)",
      "concurrency": 1,
      "export_unique_results": true,
      "to_complete": false,
      "no_line_breaks": true,
      "params": {
        "max_results": 200,
        "sort_by": "recency",
        "stars": "all",
        "language": "English",
        "verified": false,
        "replies": false,
        "fetch_since": null
      }
    }'
  ```

  ```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"

  response = requests.post(f"{BASE_URL}/squids/{squid_id}",
      headers=headers,
      json={
          "name": "Trustpilot Reviews Scraper (1)",
          "concurrency": 1,
          "export_unique_results": True,
          "to_complete": False,
          "no_line_breaks": True,
          "params": {
              "max_results": 200,
              "sort_by": "recency",
              "stars": "all",
              "language": "English",
              "verified": False,
              "replies": False,
              "fetch_since": None
          }
      }
  )

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

## Response

```json 201 theme={null}
{
  "name": "Trustpilot Reviews Scraper (1)",
  "concurrency": 1,
  "export_unique_results": true,
  "to_complete": false,
  "no_line_breaks": true,
  "params": {
    "max_results": 200,
    "sort_by": "recency",
    "stars": "all",
    "language": "English",
    "verified": false,
    "replies": false,
    "fetch_since": null
  }
}
```
