# Find Top-Performing Posts in a Facebook Group

**Use case:** 

Pull a large batch of posts from a public Facebook group and sort by reactions and comments. See what wins so you can model your own posts on it.

## Input

```json
{
  "startUrls": [
    "https://www.facebook.com/groups/665320572142756"
  ],
  "maxPosts": 60,
  "includeTopComments": true,
  "fetchAllComments": false,
  "fetchCommentReplies": false
}
```

## Output

```json
{
  "post.id": {
    "label": "Post ID"
  },
  "post.author.name": {
    "label": "Author"
  },
  "post.reactionCount": {
    "label": "Reactions"
  },
  "post.commentCount": {
    "label": "Comments"
  },
  "post.publishTime": {
    "label": "Published (Unix)"
  },
  "_metadata.group_url": {
    "label": "Group URL",
    "format": "string"
  }
}
```

## About this Actor

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