# Instagram campaign comments scraper

**Use case:** 

Extract Instagram post comments for brand campaigns with usernames, text, likes, replies, timestamps, and post URLs.

## Input

```json
{
  "postUrls": [
    "https://www.instagram.com/p/DVOyCluEVBg/"
  ],
  "maxCommentsPerPost": 100,
  "includeReplies": false,
  "sortBy": "popular",
  "proxyCountry": "US"
}
```

## Output

```json
{
  "username": {
    "label": "Username"
  },
  "text": {
    "label": "Comment"
  },
  "likesCount": {
    "label": "Likes",
    "format": "number"
  },
  "repliesCount": {
    "label": "Replies",
    "format": "number"
  },
  "isVerified": {
    "label": "Verified",
    "format": "boolean"
  },
  "timestamp": {
    "label": "Posted at"
  },
  "postUrl": {
    "label": "Post URL",
    "format": "link"
  }
}
```

## About this Actor

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