# Campaign Reaction Sentiment Monitor

**Use case:** 

Monitor audience sentiment across multiple campaign posts and export comment-level reactions for social listening reports.

## Input

```json
{
  "postUrls": [
    "https://www.instagram.com/p/C0Q8QJrO7ZL/",
    "https://www.facebook.com/facebook/posts/10153231379946729",
    "https://www.tiktok.com/@tiktok/video/7329545282819554590"
  ],
  "maxCommentsPerPost": 250,
  "includeReplies": true
}
```

## Output

```json
{
  "platform": {
    "label": "Platform"
  },
  "profileName": {
    "label": "Profile"
  },
  "postDescription": {
    "label": "Post Description"
  },
  "postLikesCount": {
    "label": "Post Likes",
    "format": "number"
  },
  "postCommentsCount": {
    "label": "Post Comments",
    "format": "number"
  },
  "commentText": {
    "label": "Comment"
  },
  "commentAuthor": {
    "label": "Author"
  },
  "sentiment": {
    "label": "Sentiment"
  },
  "sentimentScore": {
    "label": "Score",
    "format": "number"
  },
  "commentLikesCount": {
    "label": "Likes",
    "format": "number"
  },
  "commentTimestamp": {
    "label": "Date"
  },
  "postUrl": {
    "label": "Post URL",
    "format": "link"
  }
}
```

## About this Actor

This example demonstrates how to use [Social Media Sentiment Analysis](https://apify.com/automation-lab/social-media-sentiment) with a specific input configuration. Visit the [Actor detail page](https://apify.com/automation-lab/social-media-sentiment) to learn more, explore other use cases, and run it yourself.