# Multi-page Facebook Reels competitor benchmark

**Use case:** 

Pull reels from 3+ competitor Facebook pages in one run and compare side by side: views, engagement (likes, comments, shares), posting cadence, audio use, HD video URLs. Deep enrich is on to get the full engagement picture. Each page is processed independently, so a bad URL never kills the whole run. Perfect for quarterly competitive audits and brand-vs-brand benchmarking.

## Input

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

## Output

```json
{
  "reel.post_id": {
    "label": "Post ID",
    "format": "text"
  },
  "reel.url": {
    "label": "Reel URL",
    "format": "link"
  },
  "enrich.like_count": {
    "label": "Likes",
    "format": "number"
  },
  "enrich.comment_count": {
    "label": "Comments",
    "format": "number"
  },
  "enrich.share_count": {
    "label": "Shares",
    "format": "number"
  },
  "enrich.video.hd_url": {
    "label": "HD MP4",
    "format": "link"
  },
  "enrich.video.sd_url": {
    "label": "SD MP4",
    "format": "link"
  },
  "enrich.video.length_in_second": {
    "label": "Length (s)",
    "format": "number"
  },
  "enrich.video.height": {
    "label": "Height (px)",
    "format": "number"
  },
  "enrich.video.width": {
    "label": "Width (px)",
    "format": "number"
  },
  "enrich.video.captions_url": {
    "label": "Captions URL",
    "format": "link"
  },
  "_metadata.enrich_fetched": {
    "label": "Enrich fetched",
    "format": "boolean"
  },
  "_metadata.enrich_from_cache": {
    "label": "From cache",
    "format": "boolean"
  }
}
```

## 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`).
