# Scrape Instagram reels by username

**Use case:** 

Get recent reels from any public account: video URL, caption, view count, likes and comments count.

## Input

```json
{
  "usernames": [
    "acmecompany"
  ],
  "maxReelsPerUser": 24,
  "concurrency": 3
}
```

## Output

```json
{
  "queryUsername": {
    "label": "Account"
  },
  "url": {
    "label": "Reel URL"
  },
  "playCount": {
    "label": "Plays"
  },
  "likeCount": {
    "label": "Likes"
  },
  "commentCount": {
    "label": "Comments"
  },
  "caption": {
    "label": "Caption"
  },
  "durationSecs": {
    "label": "Duration (s)"
  },
  "takenAt": {
    "label": "Posted"
  }
}
```

## About this Actor

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