# Facebook Pages By Follower Count

**Use case:** 

Set a floor, a ceiling, or both, and keep only the Pages whose follower count falls inside the band. Rows outside it are dropped before billing, so screening for a size range costs less than pulling everything and filtering later.

## Input

```json
{
  "pages": [
    "katzsdeli",
    "JoesStoneCrab"
  ],
  "includePosts": true,
  "includeTransparency": true,
  "maxPostsPerPage": 10,
  "maxItems": 100,
  "onlyWithEmail": false,
  "onlyWithPhone": false,
  "onlyWithWebsite": false,
  "onlyWithAddress": false,
  "onlyVerified": false,
  "onlyRunningAds": false,
  "onlyWithPosts": false,
  "categoryContains": [],
  "minFollowers": 1000,
  "maxFollowers": 1000000,
  "onlyNewOrChanged": false,
  "emitUnchanged": false,
  "compactOutput": false,
  "concurrency": 2,
  "pageField": "page_url"
}
```

## Output

```json
{
  "page_name": {
    "label": "Page",
    "format": "string"
  },
  "page_url": {
    "label": "URL",
    "format": "string"
  },
  "categories": {
    "label": "Categories",
    "format": "array"
  },
  "followers": {
    "label": "Followers",
    "format": "integer"
  },
  "email": {
    "label": "Email",
    "format": "string"
  },
  "phone": {
    "label": "Phone",
    "format": "string"
  },
  "website": {
    "label": "Website",
    "format": "string"
  },
  "address": {
    "label": "Address",
    "format": "string"
  },
  "rating_recommend_percent": {
    "label": "Recommend %",
    "format": "integer"
  },
  "review_count": {
    "label": "Reviews",
    "format": "integer"
  },
  "is_verified": {
    "label": "Verified",
    "format": "boolean"
  },
  "page_created_date": {
    "label": "Page created",
    "format": "string"
  },
  "confirmed_owner": {
    "label": "Confirmed owner",
    "format": "string"
  },
  "is_running_ads": {
    "label": "Running ads",
    "format": "boolean"
  },
  "post_count_returned": {
    "label": "Posts",
    "format": "integer"
  }
}
```

## About this Actor

This example demonstrates how to use [Facebook Page Contacts Scraper - Emails, Phones, Followers](https://apify.com/snow_leo_data/facebook-pages-scraper.md) with a specific input configuration. Visit the [Actor detail page](https://apify.com/snow_leo_data/facebook-pages-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/snow_leo_data/facebook-pages-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`).
