> ## 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 Quora Scraper settings

Configure your **Quora 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                                                                    |
| ---------------------------------- | ------- | ------- | ------------------------------------------------------------------------------ |
| **url**                            | string  | —       | URL of a Quora question, profile, space or topic                               |
| **max\_results**                   | integer | —       | Maximum rows to collect per task                                               |
| **max\_unique\_results\_per\_run** | integer | —       | Max unique results across all tasks in a run                                   |
| **resolve\_most\_viewed\_writers** | boolean | false   | Fetch question's topic page to get most-viewed-writer status for each answerer |

## 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 '{"params": {"max_results": 100, "resolve_most_viewed_writers": false}}'
  ```

  ```python Python theme={null}
  import requests
  requests.post("https://api.lobstr.io/v1/squids/YOUR_SQUID_HASH",
      headers={"Authorization": "Token YOUR_API_KEY", "Content-Type": "application/json"},
      json={"params": {"max_results": 100, "resolve_most_viewed_writers": false}})
  ```
</CodeGroup>

## Response

```json 201 theme={null}
{"params": {"max_results": 100, "resolve_most_viewed_writers": false}}
```
