# Download Public Photos from Celebrity Facebook Albums

**Use case:** 

Download full-resolution photos from public celebrity and creator Facebook albums. Pre-configured with top profile targets and automated photo extraction.

## Input

```json
{
  "username": [
    "leomessi",
    "Cristiano"
  ],
  "facebook_urls": [
    {
      "url": "https://www.facebook.com/Cristiano/"
    }
  ],
  "max_albums_per_profile": 5,
  "include_direct_album": false,
  "include_album_photos": true,
  "photos_per_album": 15,
  "include_album_comments": false,
  "comments_limit": 10,
  "comment_filter": "most_relevant",
  "keyValueStorePrefix": "<YOUR_SECRET>",
  "storePhotos": false
}
```

## Output

```json
{
  "number": {
    "label": "Result #",
    "format": "integer"
  },
  "album_title": {
    "label": "Album title",
    "format": "string"
  },
  "album_count": {
    "label": "Album count",
    "format": "integer"
  },
  "album_item_count_text": {
    "label": "Item count text",
    "format": "string"
  },
  "album_type": {
    "label": "Album type",
    "format": "string"
  },
  "album_created_at": {
    "label": "Created at",
    "format": "string"
  },
  "album_url": {
    "label": "Album URL",
    "format": "string"
  },
  "cover_image_url": {
    "label": "Cover image URL",
    "format": "string"
  },
  "image_url": {
    "label": "Image URL",
    "format": "string"
  },
  "thumbnail_url": {
    "label": "Thumbnail URL",
    "format": "string"
  },
  "album_photos": {
    "label": "Album photos",
    "format": "object"
  },
  "storage_mode": {
    "label": "Storage mode",
    "format": "object"
  },
  "album_comments": {
    "label": "Album comments",
    "format": "object"
  },
  "profile_url": {
    "label": "Profile URL",
    "format": "string"
  },
  "source_input": {
    "label": "Source input",
    "format": "string"
  },
  "source_type": {
    "label": "Source type",
    "format": "string"
  },
  "album_id": {
    "label": "Album ID",
    "format": "string"
  },
  "album_description": {
    "label": "Album description",
    "format": "string"
  },
  "album_owner": {
    "label": "Album owner",
    "format": "object"
  },
  "album_engagement": {
    "label": "Album engagement",
    "format": "object"
  },
  "album_request_details": {
    "label": "Request details",
    "format": "object"
  }
}
```

## About this Actor

This example demonstrates how to use [Facebook Albums Scraper⚡](https://apify.com/premiumscraper/facebook-albums-scraper.md) with a specific input configuration. Visit the [Actor detail page](https://apify.com/premiumscraper/facebook-albums-scraper.md) to learn more, explore other use cases, and run it yourself.


## How to integrate an Actor?

If asked about integration, you help developers integrate Actors into their projects.
You adapt to their stack and deliver integrations that are safe, well-documented, and production-ready.
This Task's input is already configured above — use it as-is rather than inventing a new one.

- **AI agents and MCP clients** — the [Apify MCP server](https://docs.apify.com/integrations/mcp.md) at `https://mcp.apify.com` (remote, streamable HTTP, OAuth on first use).
- **Agentic workflows and local Actor development** — [Agent Skills](https://apify.com/.well-known/agent-skills/index.json) with the [Apify CLI](https://docs.apify.com/cli/docs.md): `npm install -g apify-cli`, then `apify login`.
- **JavaScript/TypeScript projects** — the official [JS/TS client](https://docs.apify.com/api/client/js/docs.md): `npm install apify-client`.
- **Python projects** — the official [Python client](https://docs.apify.com/api/client/python/docs.md): `pip install apify-client`.
- **Any other language** — the [REST API](https://docs.apify.com/api/v2.md).

For full API examples (JavaScript, Python, CLI, MCP, OpenAPI), see this Task's Actor page: https://apify.com/premiumscraper/facebook-albums-scraper.md

For more details, see Apify documentation as [Markdown index](https://docs.apify.com/llms.txt) and [Markdown full-text](https://docs.apify.com/llms-full.txt).
