# Recent Facebook Comments by Date Range

**Use case:** 

Collect recent comments from Facebook posts within a specific date range. Returns structured JSON with details on comments and replies.

## Input

```json
{
  "postUrls": [
    "https://www.facebook.com/Cristiano/posts/pfbid02seJDCEPPoHUmcP2XMQL1aKUijVK2WF9gAJGcNHx2GxpkukG4B6BPW7YxCgGoBx66l"
  ],
  "maxComments": 30,
  "includeReplies": true,
  "replyDepth": "1",
  "maxRepliesPerLevel": 3,
  "commentsSortBy": "newest",
  "commentsDateRange": "1 month"
}
```

## Output

```json
{
  "postUrl": {
    "label": "Post url"
  },
  "postId": {
    "label": "Post id"
  },
  "authorName": {
    "label": "Author name"
  },
  "createdAt": {
    "label": "Created at"
  },
  "text": {
    "label": "Text"
  },
  "commentCount": {
    "label": "Comment count"
  },
  "reactionCount": {
    "label": "Reaction count"
  },
  "shareCount": {
    "label": "Share count"
  }
}
```

## About this Actor

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