# Bulk Scrape Facebook Comments from Multiple Post URLs

**Use case:** 

Run one job, scrape comments from many Facebook post or reel URLs at once. Per-post error isolation keeps the run going if one URL fails. No login.

## Input

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

## 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.