# Analyze Facebook Ad Comments for Market Research & Sentiment

**Use case:** 

Scrape all comments from specific Facebook ad posts to understand audience sentiment, identify common pain points, and gather product feedback. This helps busin

## Input

```json
{
  "startUrls": [
    {
      "url": "https://www.facebook.com/watch/?v=123456789012345"
    },
    {
      "url": "https://www.facebook.com/photo.php?fbid=123456789012345&set=a.123456789012345&type=3"
    },
    {
      "url": "https://www.facebook.com/permalink.php?story_fbid=123456789012345&id=123456789012345"
    }
  ],
  "maxItems": 500,
  "commentsMode": "ALL",
  "includeNestedComments": true,
  "maxConcurrency": 2,
  "minConcurrency": 1,
  "maxRequestRetries": 3,
  "proxy": {
    "useApifyProxy": true,
    "apifyProxyGroups": [
      "RESIDENTIAL"
    ]
  }
}
```

## Output

```json
{
  "profileName": {
    "label": "Author",
    "format": "text"
  },
  "text": {
    "label": "Comment",
    "format": "text"
  },
  "date": {
    "label": "Date",
    "format": "text"
  },
  "likesCount": {
    "label": "Likes",
    "format": "text"
  },
  "commentsCount": {
    "label": "Replies",
    "format": "number"
  },
  "threadingDepth": {
    "label": "Depth",
    "format": "number"
  },
  "commentUrl": {
    "label": "URL",
    "format": "link"
  }
}
```

## About this Actor

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