# Track Facebook Page Engagement: Reactions and Comments

**Use case:** 

Get reaction count, comment count, publish time, and post text for a Facebook page's recent posts. Build engagement datasets without any login.

## Input

```json
{
  "sources": [
    "redbull"
  ],
  "maxPosts": 30,
  "includeTopComments": false,
  "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.