# Daily Facebook Competitor Change Monitor

**Use case:** 

Track public Facebook competitor pages and return only profiles that changed since the previous run. Ideal for a daily Apify schedule.

## Input

```json
{
  "mode": "profiles",
  "profileUrls": [
    "https://www.facebook.com/NASA",
    "https://www.facebook.com/cocacola",
    "https://www.facebook.com/Microsoft"
  ],
  "searchKeywords": [
    "dentist miami"
  ],
  "searchLocation": "Miami, Florida",
  "maxResultsPerKeyword": 50,
  "maxResults": 200,
  "outputPreset": "full",
  "maxPosts": 25,
  "maxPostPages": 5,
  "postsSince": "2026-08-01",
  "postsUntil": "2026-08-31",
  "postKeyword": "",
  "scrapePosts": false,
  "sinceDays": 0,
  "enrichEmailViaGoogle": false,
  "emailDomains": [],
  "minFollowers": 0,
  "maxFollowers": 0,
  "minActivityScore": 0,
  "verifiedOnly": false,
  "businessPagesOnly": false,
  "onlyWithContact": false,
  "trackChanges": true,
  "onlyChanged": true,
  "maxConcurrency": 5,
  "timeout": 20,
  "maxRetries": 2,
  "dedupe": true,
  "fastMode": false,
  "notifyWebhookUrl": ""
}
```

## Output

```json
{
  "fullName": {
    "label": "Name",
    "format": "string"
  },
  "changeStatus": {
    "label": "Change status",
    "format": "string"
  },
  "followerCount": {
    "label": "Followers",
    "format": "integer"
  },
  "followerChange": {
    "label": "Follower change",
    "format": "integer"
  },
  "followerGrowthPercent": {
    "label": "Follower growth %",
    "format": "number"
  },
  "followerGrowthPerDay": {
    "label": "Follower growth / day",
    "format": "number"
  },
  "changedFields": {
    "label": "Changed fields",
    "format": "array"
  },
  "previousCollectedAt": {
    "label": "Previous snapshot",
    "format": "string"
  },
  "collectedAt": {
    "label": "Collected at",
    "format": "string"
  },
  "profileUrl": {
    "label": "Facebook profile URL",
    "format": "string"
  }
}
```

## About this Actor

This example demonstrates how to use [Facebook Profile & Posts Scraper | No Login | Bulk](https://apify.com/apivault_labs/facebook-profile-scraper.md) with a specific input configuration. Visit the [Actor detail page](https://apify.com/apivault_labs/facebook-profile-scraper.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/apivault_labs/facebook-profile-scraper.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`).
