# Collect Facebook post text for editorial research

**Use case:** 

Extract message text, publication dates, author names, and source links from known public Facebook posts. Prepare reference records for editorial research or quotation review, keeping each passage connected to the original post and its author.

## Input

```json
{
  "inputList": [
    "https://www.facebook.com/photo.php?fbid=1100421822647027&set=a.228838066472078&type=3"
  ]
}
```

## 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"
  }
}
```

## About this Actor

This example demonstrates how to use [Facebook Post Details Scraper – Text & Media](https://apify.com/scrapingmonkey/facebook-post-details-scraper.md) with a specific input configuration. Visit the [Actor detail page](https://apify.com/scrapingmonkey/facebook-post-details-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-post-details-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).
