# Facebook Comments Data Extractor

**Use case:** 

Scrape comments from Facebook posts, reels, or videos. Gather author details, reactions, timestamps, and full comment content.

## Input

```json
{
  "postUrls": [
    "https://www.facebook.com/share/r/1B99k4jmS8/",
    "https://www.facebook.com/share/p/1AovNFH2iF/",
    "https://www.facebook.com/share/r/18cAK4MA3D/",
    "https://www.facebook.com/groups/pumpkinlatte/posts/1169211251378058/"
  ],
  "maxComments": 25,
  "proxyConfiguration": {
    "useApifyProxy": false
  }
}
```

## Output

```json
{
  "postId": {
    "label": "Post ID",
    "format": "text"
  },
  "authorProfilePic": {
    "label": "Avatar",
    "format": "image"
  },
  "author": {
    "label": "Author",
    "format": "text"
  },
  "text": {
    "label": "Comment",
    "format": "text"
  },
  "reactions": {
    "label": "Reactions",
    "format": "number"
  },
  "replies": {
    "label": "Replies",
    "format": "number"
  },
  "createdTime": {
    "label": "Date",
    "format": "text"
  }
}
```

## About this Actor

This example demonstrates how to use [Facebook Comments Scraper](https://apify.com/clappi/facebook-comments-scraper) with a specific input configuration. Visit the [Actor detail page](https://apify.com/clappi/facebook-comments-scraper) to learn more, explore other use cases, and run it yourself.