# Scrape Instagram post comments

**Use case:** 

Extract comments from Instagram posts or reels. Get comment text, authors, likes, and timestamps in clean JSON.

## Input

```json
{
  "postUrls": [
    "https://www.instagram.com/p/DN8-GjPkgjS"
  ],
  "maxCommentsPerPost": 15,
  "includeReplies": false
}
```

## Output

```json
{
  "commentUrl": {
    "label": "Comment URL",
    "format": "string"
  },
  "postUrl": {
    "label": "Post URL",
    "format": "string"
  },
  "authorUsername": {
    "label": "Author username",
    "format": "string"
  },
  "body": {
    "label": "Comment text",
    "format": "string"
  },
  "likeCount": {
    "label": "Like count",
    "format": "integer"
  },
  "replyCount": {
    "label": "Reply count",
    "format": "integer"
  },
  "publishedAt": {
    "label": "Published at",
    "format": "string"
  },
  "authorAvatarUrl": {
    "label": "Author avatar",
    "format": "string"
  }
}
```

## About this Actor

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