# Scrape Instagram reels from a profile

**Use case:** 

Extract recent Instagram reels from any username or profile URL. Get captions, likes, plays, video URLs, and timestamps in clean JSON.

## Input

```json
{
  "targets": [
    "natgeo"
  ],
  "maxReelsPerProfile": 10,
  "postedAfter": "1 month",
  "skipPinned": false,
  "skipTrial": false,
  "includeShareCount": false,
  "includeTranscript": false,
  "includeVideoDownload": false
}
```

## Output

```json
{
  "reelUrl": {
    "label": "Reel URL",
    "format": "string"
  },
  "authorUsername": {
    "label": "Author username",
    "format": "string"
  },
  "text": {
    "label": "Caption",
    "format": "string"
  },
  "likeCount": {
    "label": "Like count",
    "format": "integer"
  },
  "commentCount": {
    "label": "Comment count",
    "format": "integer"
  },
  "playCount": {
    "label": "Play count",
    "format": "integer"
  },
  "durationSecs": {
    "label": "Duration (seconds)",
    "format": "number"
  },
  "publishedAt": {
    "label": "Published at",
    "format": "string"
  },
  "imageUrl": {
    "label": "Thumbnail URL",
    "format": "string"
  },
  "videoUrl": {
    "label": "Video URL",
    "format": "string"
  }
}
```

## About this Actor

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