# Collect Product Launch Feedback from Instagram Comments

**Use case:** 

Scrape all public comments from Instagram posts announcing a new product or feature launch to capture immediate customer reactions and suggestions. This data is

## Input

```json
{
  "postUrls": [
    "https://www.instagram.com/p/C4sA9xPZlX3/",
    "https://www.instagram.com/reel/C4uB0yXcXfG/",
    "https://www.instagram.com/p/C4wC5qQYxZ1/"
  ],
  "maxCommentsPerPost": 0,
  "includeReplies": true,
  "maxRepliesPerComment": 0,
  "cookies": "[{\"name\": \"sessionid\", \"value\": \"your_session_id\", \"domain\": \".instagram.com\"}]",
  "sessionName": "my_instagram_session",
  "minDelayBetweenPosts": 2,
  "maxDelayBetweenPosts": 5
}
```

## Output

```json
{
  "post_url": {
    "label": "Post url"
  },
  "post_shortcode": {
    "label": "Post shortcode"
  },
  "comment_id": {
    "label": "Comment id"
  },
  "comment_text": {
    "label": "Comment text"
  },
  "author_username": {
    "label": "Author username"
  },
  "author_user_id": {
    "label": "Author user id"
  },
  "created_at": {
    "label": "Created at"
  },
  "likes_count": {
    "label": "Likes count"
  },
  "reply_count": {
    "label": "Reply count"
  },
  "is_reply": {
    "label": "Is reply"
  },
  "parent_comment_id": {
    "label": "Parent comment id"
  },
  "author_is_verified": {
    "label": "Author is verified"
  }
}
```

## About this Actor

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