Skip to main content
POST
/
monitors
/
{monitor_id}
/
targets
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/" }'
{
  "added": 1,
  "watch": ["https://www.linkedin.com/in/carol/"]
}
Grow a monitor’s watch list without recreating it — e.g. add more authors to a post_engagement monitor.

Path Parameters

monitor_id
number
required
The monitor to add to.

Request Body

watch
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.
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/" }'
{
  "added": 1,
  "watch": ["https://www.linkedin.com/in/carol/"]
}