# Scrape Facebook Reel Comments with Full Reactions

**Use case:** 

Scrape every public comment on a Facebook reel: text, timestamp, author, reply count, and the full reaction breakdown. No login, no cookies.

## Input

```json
{
  "postUrls": [
    "https://www.facebook.com/reel/753347914167361"
  ],
  "maxComments": 200,
  "fetchReplies": false,
  "maxRepliesPerComment": 50,
  "excludeAuthorGender": false
}
```

## Output

```json
{
  "comment.text": {
    "label": "Comment",
    "format": "string"
  },
  "comment.author.name": {
    "label": "Author",
    "format": "string"
  },
  "comment.reaction_count": {
    "label": "Reactions",
    "format": "integer"
  },
  "comment.reply_count": {
    "label": "Replies",
    "format": "integer"
  },
  "comment.created_at": {
    "label": "Created at",
    "format": "string"
  },
  "type": {
    "label": "Type",
    "format": "string"
  },
  "postUrl": {
    "label": "Post URL",
    "format": "string"
  },
  "parentCommentId": {
    "label": "Parent comment ID",
    "format": "string"
  },
  "comment.id": {
    "label": "Comment ID",
    "format": "string"
  }
}
```

## About this Actor

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