# Facebook page profile via reels - followers, ads, contact

**Use case:** 

Get the Facebook page profile behind any set of reels: follower count, category, is-running-ads flag from the Meta Ad Library, business hours, contact info (email, phone, website, address), rating, and creation date. Charged once per unique page, not per reel. Perfect for lead-gen pipelines, competitive intel on which pages run paid ads, and local-business research.

## Input

```json
{
  "startUrls": [
    "https://www.facebook.com/copperkettleyqr"
  ],
  "maxReels": 3,
  "enrichReelDetails": true,
  "fetchTranscript": true,
  "enrichAuthorProfile": true,
  "fetchComments": false,
  "maxCommentsPerReel": 0,
  "fetchCommentReplies": false,
  "maxRepliesPerComment": 0,
  "translateTo": [],
  "cacheMaxAge": "7d"
}
```

## Output

```json
{
  "name": {
    "label": "Author",
    "format": "text"
  },
  "url": {
    "label": "Page URL",
    "format": "link"
  },
  "category": {
    "label": "Category",
    "format": "text"
  },
  "followerCount": {
    "label": "Followers",
    "format": "number"
  },
  "likeCount": {
    "label": "Likes",
    "format": "number"
  },
  "is_running_ads": {
    "label": "Running ads?",
    "format": "boolean"
  },
  "rating": {
    "label": "Rating",
    "format": "text"
  },
  "isBusinessPageActive": {
    "label": "Business page active",
    "format": "boolean"
  },
  "creationDate": {
    "label": "Created",
    "format": "text"
  },
  "source_url": {
    "label": "Input URL",
    "format": "link"
  },
  "_metadata.fetched_at": {
    "label": "Fetched at",
    "format": "date"
  }
}
```

## About this Actor

This example demonstrates how to use [🎬 Facebook Reels Scraper - MP4, Views, Audio [NO LOGIN]](https://apify.com/unseenuser/fb-reels.md) with a specific input configuration. Visit the [Actor detail page](https://apify.com/unseenuser/fb-reels.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/unseenuser/fb-reels.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`).
