# Watch Creators for Follower Growth and Drops

**Use case:** 

Recheck a saved creator list and return a row whenever a follower count moves, with the old number, the new number, and the previous run time. $0.008 each.

## Input

```json
{
  "list_name": "follower-watch",
  "handles": [
    "https://www.tiktok.com/@desreclark",
    "https://www.tiktok.com/@nathangjosephpt",
    "https://www.instagram.com/fitgurlmel/",
    "https://www.instagram.com/hussein.fht/"
  ],
  "platforms": [
    "tiktok",
    "instagram"
  ],
  "check_links": false,
  "match_agencies": false,
  "escalate_on_block": true,
  "contribute_to_shared_pool": true,
  "source_tag": "creator-change-monitor:watch-creators-for-follower-growth-and-drops"
}
```

## Output

```json
{
  "change_type": {
    "label": "Change type",
    "format": "string"
  },
  "change_from": {
    "label": "Change from",
    "format": "string"
  },
  "change_to": {
    "label": "Change to",
    "format": "string"
  },
  "previous_run_at": {
    "label": "Previous run at",
    "format": "string"
  },
  "platform": {
    "label": "Platform",
    "format": "string"
  },
  "handle": {
    "label": "Handle",
    "format": "string"
  },
  "profile_url": {
    "label": "Profile url",
    "format": "string"
  },
  "followers": {
    "label": "Followers",
    "format": "integer"
  },
  "newsletter_status": {
    "label": "Newsletter status",
    "format": "string"
  },
  "bio_link": {
    "label": "Bio link",
    "format": "string"
  },
  "manager_email": {
    "label": "Manager email",
    "format": "string"
  },
  "row_status": {
    "label": "Row status",
    "format": "string"
  },
  "error_reason": {
    "label": "Error reason",
    "format": "string"
  }
}
```

## About this Actor

This example demonstrates how to use [Influencer Change Monitor](https://apify.com/mambalabs/creator-change-monitor.md) with a specific input configuration. Visit the [Actor detail page](https://apify.com/mambalabs/creator-change-monitor.md) to learn more, explore other use cases, and run it yourself.


## How to integrate an Actor?

This Task's input is already configured above. Use it as-is rather than inventing a new one.

Do not guess an integration path. Every one of them is in the agent quickstart at https://apify.com/agents.md: the Apify MCP server, Agent Skills with the Apify CLI, the JavaScript and Python clients, the REST API, and the account-free path for an agent with no human to sign in. It also carries the rule on stating cost before the first paid run.

For full API examples (JavaScript, Python, CLI, MCP, OpenAPI), see this Task's Actor page: https://apify.com/mambalabs/creator-change-monitor.md

Each client library has reference documentation the quickstart does not restate: [JavaScript/TypeScript](https://docs.apify.com/api/client/js/docs.md) (`npm install apify-client`) and [Python](https://docs.apify.com/api/client/python/docs.md) (`pip install apify-client`).
