# Facebook Posts and Reels Metrics Extractor

**Use case:** 

Get detailed metrics from Facebook posts and reels. Extract reactions, comments, shares, views, and more with just the URLs.

## Input

```json
{
  "postUrls": [
    "https://www.facebook.com/share/r/1Dp3jrkRrW/",
    "https://www.facebook.com/share/p/1ECnzMeN9y/",
    "https://www.facebook.com/groups/pumpkinlatte/posts/1169211251378058/",
    "https://www.facebook.com/reel/1765474204639221"
  ],
  "proxyConfiguration": {
    "useApifyProxy": false
  }
}
```

## Output

```json
{
  "url": {
    "label": "Post URL",
    "format": "link"
  },
  "views": {
    "label": "Views",
    "format": "number"
  },
  "likes": {
    "label": "Reactions",
    "format": "number"
  },
  "comments": {
    "label": "Comments",
    "format": "number"
  },
  "shares": {
    "label": "Shares",
    "format": "number"
  },
  "author": {
    "label": "Author",
    "format": "text"
  },
  "authorName": {
    "label": "Author Name",
    "format": "text"
  },
  "caption": {
    "label": "Caption",
    "format": "text"
  },
  "datePosted": {
    "label": "Date Posted",
    "format": "text"
  }
}
```

## About this Actor

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