# Scrape Instagram reels by URL

**Use case:** 

Paste one or more Instagram reel URLs and extract captions, engagement metrics, video URLs, and audio metadata in clean JSON.

## Input

```json
{
  "targets": [
    "https://www.instagram.com/reel/DX7lzTOJ1p6/"
  ],
  "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.