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

# Add to Watch

> Add values to watch on an existing monitor

Grow a monitor's watch list without recreating it — e.g. add more authors to a `post_engagement` monitor.

## Path Parameters

<ParamField path="monitor_id" type="number" required>The monitor to add to.</ParamField>

## Request Body

<ParamField body="watch" type="string | array" required>
  Value(s) to add — a profile/company URL or a keyword (one or a list, up to **100** per request). Type detected automatically.
</ParamField>

<RequestExample>
  ```bash cURL theme={null}
  curl -X POST https://api.dataforb2b.ai/monitors/42/targets \
    -H "api_key: YOUR_api_key" -H "Content-Type: application/json" \
    -d '{ "watch": "https://www.linkedin.com/in/carol/" }'
  ```
</RequestExample>

<ResponseExample>
  ```json Response theme={null}
  {
    "added": 1,
    "watch": ["https://www.linkedin.com/in/carol/"]
  }
  ```
</ResponseExample>
