# Collect Comments from Viral Instagram Posts

**Use case:** 

Extract comments from viral Instagram posts and Reels to analyze audience reactions, engagement, and trending discussions.

## Input

```json
{
  "posts": [
    "https://www.instagram.com/reel/DZN0A4Mgx8-/"
  ],
  "commentsPerPost": 50,
  "commentsSortOrder": "popular"
}
```

## Output

```json
{
  "pk": {
    "label": "🔑 Comment PK",
    "format": "string"
  },
  "text": {
    "label": "💬 Comment Text",
    "format": "string"
  },
  "created_at": {
    "label": "⏱️ Commented At",
    "format": "integer"
  },
  "scraped_at": {
    "label": "🕒 Scraped At",
    "format": "string"
  },
  "user.username": {
    "label": "👤 Username",
    "format": "string"
  },
  "user.is_verified": {
    "label": "✅ Verified",
    "format": "boolean"
  },
  "user.profile_pic_url": {
    "label": "🖼️ Profile Pic",
    "format": "string"
  },
  "is_edited": {
    "label": "✏️ Edited",
    "format": "boolean"
  },
  "comment_like_count": {
    "label": "❤️ Likes",
    "format": "integer"
  },
  "has_liked_comment": {
    "label": "👍 Viewer Liked",
    "format": "boolean"
  },
  "child_comment_count": {
    "label": "↩️ Replies",
    "format": "integer"
  },
  "parent_comment_id": {
    "label": "🔗 Parent Comment",
    "format": "string"
  },
  "has_translation": {
    "label": "🌐 Translation Available",
    "format": "boolean"
  },
  "restricted_status": {
    "label": "⚠️ Restricted Status",
    "format": "string"
  },
  "is_covered": {
    "label": "🛡️ Covered",
    "format": "boolean"
  }
}
```

## About this Actor

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