# Bulk download Facebook Reels MP4 from any page

**Use case:** 

Bulk-download every public Reel from a Facebook page as a direct HD MP4 URL you can pipe into ffmpeg, yt-dlp, curl, or any downloader. No login, no cookies, no watermark. URLs are signed Facebook CDN links and time-limited, so download during the run. Ideal for content-library builds, offline analysis, media re-encoding pipelines, and archival.

## Input

```json
{
  "startUrls": [
    "https://www.facebook.com/redbull"
  ],
  "maxReels": 10,
  "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"
  },
  "reel.creation_time": {
    "label": "Created",
    "format": "date"
  },
  "reel.description": {
    "label": "Description",
    "format": "text"
  },
  "reel.view_count": {
    "label": "Views",
    "format": "number"
  },
  "reel.play_time_in_ms": {
    "label": "Play time (ms)",
    "format": "number"
  },
  "reel.thumbnail": {
    "label": "Thumbnail",
    "format": "image"
  },
  "reel.video_url": {
    "label": "Direct MP4 (time-limited)",
    "format": "link"
  },
  "reel.author.name": {
    "label": "Author",
    "format": "text"
  },
  "reel.author.is_verified": {
    "label": "Verified",
    "format": "boolean"
  },
  "reel.author.url": {
    "label": "Author URL",
    "format": "link"
  },
  "reel.music.track_title": {
    "label": "Audio track",
    "format": "text"
  },
  "_metadata.source_url": {
    "label": "Source URL",
    "format": "link"
  },
  "_metadata.url_kind": {
    "label": "URL kind",
    "format": "text"
  },
  "_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`).
