# Catalog media references from Facebook group posts

**Use case:** 

Collect the available image and video references attached to public Facebook group posts, together with captions, authors, and source URLs. Build a media-reference catalog for content review without downloading or republishing the files.

## Input

```json
{
  "inputList": [
    "Python"
  ],
  "pagesPerGroup": 2
}
```

## Output

```json
{
  "input": {
    "label": "Input",
    "format": "string"
  },
  "status": {
    "label": "Status",
    "format": "string"
  },
  "id": {
    "label": "ID",
    "format": "string"
  },
  "story_id": {
    "label": "Story ID",
    "format": "string"
  },
  "url": {
    "label": "URL",
    "format": "string"
  },
  "type": {
    "label": "Type",
    "format": "string"
  },
  "message": {
    "label": "Message",
    "format": "string"
  },
  "timestamp": {
    "label": "Timestamp",
    "format": "integer"
  },
  "published_at": {
    "label": "Published At",
    "format": "string"
  },
  "reactions_count": {
    "label": "Reactions Count",
    "format": "integer"
  },
  "comments_count": {
    "label": "Comments Count",
    "format": "integer"
  },
  "shares_count": {
    "label": "Shares Count",
    "format": "integer"
  },
  "views_count": {
    "label": "Views Count",
    "format": "integer"
  },
  "image_url": {
    "label": "Image URL",
    "format": "string"
  },
  "thumbnail_url": {
    "label": "Thumbnail URL",
    "format": "string"
  },
  "video_url": {
    "label": "Video URL",
    "format": "string"
  },
  "feedback_id": {
    "label": "Feedback ID",
    "format": "string"
  },
  "is_sponsored": {
    "label": "Is Sponsored",
    "format": "boolean"
  },
  "is_pinned": {
    "label": "Is Pinned",
    "format": "boolean"
  },
  "author.id": {
    "label": "Author / ID",
    "format": "text"
  },
  "author.page_id": {
    "label": "Author / Page ID",
    "format": "text"
  },
  "author.username": {
    "label": "Author / Username",
    "format": "text"
  },
  "author.name": {
    "label": "Author / Name",
    "format": "text"
  },
  "author.url": {
    "label": "Author / URL",
    "format": "link"
  },
  "author.profile_picture_url": {
    "label": "Author / Profile Picture URL",
    "format": "image"
  },
  "author.is_verified": {
    "label": "Author / Is Verified",
    "format": "boolean"
  },
  "reactions.id": {
    "label": "Reactions / ID",
    "format": "array"
  },
  "reactions.type": {
    "label": "Reactions / Type",
    "format": "array"
  },
  "reactions.count": {
    "label": "Reactions / Count",
    "format": "array"
  },
  "media.id": {
    "label": "Media / ID",
    "format": "array"
  },
  "media.type": {
    "label": "Media / Type",
    "format": "array"
  },
  "media.url": {
    "label": "Media / URL",
    "format": "array"
  },
  "media.image_url": {
    "label": "Media / Image URL",
    "format": "array"
  },
  "media.thumbnail_url": {
    "label": "Media / Thumbnail URL",
    "format": "array"
  },
  "media.video_url_hd": {
    "label": "Media / Video URL HD",
    "format": "array"
  },
  "media.video_url_sd": {
    "label": "Media / Video URL SD",
    "format": "array"
  },
  "media.dash_manifest_url": {
    "label": "Media / Dash Manifest URL",
    "format": "array"
  },
  "media.dash_manifest": {
    "label": "Media / Dash Manifest",
    "format": "array"
  },
  "media.duration_ms": {
    "label": "Media / Duration Ms",
    "format": "array"
  },
  "media.width": {
    "label": "Media / Width",
    "format": "array"
  },
  "media.height": {
    "label": "Media / Height",
    "format": "array"
  },
  "media.alt_text": {
    "label": "Media / Alt Text",
    "format": "array"
  },
  "media.captions_url": {
    "label": "Media / Captions URL",
    "format": "array"
  },
  "source_group.id": {
    "label": "Source Group / ID",
    "format": "text"
  },
  "source_group.username": {
    "label": "Source Group / Username",
    "format": "text"
  },
  "source_group.name": {
    "label": "Source Group / Name",
    "format": "text"
  },
  "source_group.url": {
    "label": "Source Group / URL",
    "format": "link"
  },
  "source_group.profile_picture_url": {
    "label": "Source Group / Profile Picture URL",
    "format": "image"
  },
  "source_group.privacy": {
    "label": "Source Group / Privacy",
    "format": "text"
  },
  "source_group.members_count": {
    "label": "Source Group / Members Count",
    "format": "number"
  },
  "source_group.members_text": {
    "label": "Source Group / Members Text",
    "format": "text"
  }
}
```

## About this Actor

This example demonstrates how to use [Facebook Group Posts Scraper - Public Feed Export](https://apify.com/scrapingmonkey/facebook-group-posts-scraper.md) with a specific input configuration. Visit the [Actor detail page](https://apify.com/scrapingmonkey/facebook-group-posts-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/scrapingmonkey/facebook-group-posts-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).
