# Instagram Reel comments scraper

**Use case:** 

Scrape comments and reply threads from an Instagram Reel to analyze audience feedback, questions, and engagement signals.

## Input

```json
{
  "postUrls": [
    "https://www.instagram.com/reel/DG76_43oW5B/"
  ],
  "maxCommentsPerPost": 50,
  "includeReplies": true,
  "sortBy": "newest",
  "proxyCountry": "GB"
}
```

## 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.