# Scrape Posts from a Public Facebook Group

**Use case:** 

Pull recent posts from any public Facebook group: text, author, reactions, top comments, and video URLs. Post content only, never member lists. No login.

## Input

```json
{
  "sources": [
    "https://www.facebook.com/groups/cookingfromtheheart"
  ],
  "maxPosts": 30,
  "includeTopComments": true,
  "fetchAllComments": true,
  "fetchCommentReplies": true,
  "fetchTranscript": false,
  "enrichSinglePostFields": false
}
```

## Output

```json
{
  "id": {
    "label": "Post ID",
    "format": "string"
  },
  "authorName": {
    "label": "Author",
    "format": "string"
  },
  "text": {
    "label": "Text",
    "format": "string"
  },
  "permalink": {
    "label": "Permalink",
    "format": "string"
  },
  "reactionCount": {
    "label": "Reactions",
    "format": "integer"
  },
  "commentCount": {
    "label": "Comments",
    "format": "integer"
  },
  "publishTimeIso": {
    "label": "Published",
    "format": "string"
  },
  "mode": {
    "label": "Mode",
    "format": "string"
  },
  "source": {
    "label": "Source",
    "format": "string"
  },
  "fetchedAt": {
    "label": "Fetched at",
    "format": "string"
  },
  "error": {
    "label": "Error",
    "format": "string"
  }
}
```

## About this Actor

This example demonstrates how to use [Facebook Page Posts & Comments Scraper [No Cookies, No Login] ✅](https://apify.com/unseenuser/fb-posts) with a specific input configuration. Visit the [Actor detail page](https://apify.com/unseenuser/fb-posts) to learn more, explore other use cases, and run it yourself.