# Verified Facebook Micro-Influencer Finder

**Use case:** 

Discover verified Facebook creators in the 10K–500K follower range and filter out weak or inactive profiles before they reach your Dataset.

## Input

```json
{
  "mode": "search",
  "profileUrls": [
    "https://www.facebook.com/NASA",
    "https://www.facebook.com/cocacola",
    "https://www.facebook.com/Microsoft",
    "https://www.facebook.com/nike",
    "https://www.facebook.com/starbucks",
    "https://www.facebook.com/redbull",
    "https://www.facebook.com/google",
    "https://www.facebook.com/amazon"
  ],
  "searchKeywords": [
    "fitness coach",
    "travel creator",
    "food blogger"
  ],
  "searchLocation": "United States",
  "maxResultsPerKeyword": 25,
  "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": 10000,
  "maxFollowers": 500000,
  "minActivityScore": 30,
  "verifiedOnly": true,
  "businessPagesOnly": false,
  "onlyWithContact": false,
  "trackChanges": false,
  "onlyChanged": false,
  "maxConcurrency": 15,
  "timeout": 20,
  "maxRetries": 2,
  "dedupe": true,
  "fastMode": false,
  "notifyWebhookUrl": ""
}
```

## Output

```json
{
  "avatarUrl": {
    "label": "Avatar URL",
    "format": "string"
  },
  "fullName": {
    "label": "Name",
    "format": "string"
  },
  "username": {
    "label": "Username",
    "format": "string"
  },
  "category": {
    "label": "Category",
    "format": "string"
  },
  "followerCount": {
    "label": "Followers",
    "format": "integer"
  },
  "verified": {
    "label": "Verified",
    "format": "boolean"
  },
  "activityScore": {
    "label": "Activity score",
    "format": "integer"
  },
  "primaryEmail": {
    "label": "Primary email",
    "format": "string"
  },
  "primaryPhone": {
    "label": "Primary phone",
    "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`).
