# Download a public Instagram reel video and metadata

**Use case:** 

Paste a public Instagram reel URL and export its direct video URL, thumbnail, duration, play/view counts, and public audio metadata.

## Input

```json
{
  "profileUrlsOrHandles": [
    "nasa"
  ],
  "postUrls": [
    "https://www.instagram.com/reel/Dabg9j1xNHM/"
  ],
  "maxPostsPerProfile": 12,
  "maxDirectUrls": 1,
  "includeReels": true,
  "maxProfiles": 2,
  "includePosts": true,
  "proxyConfiguration": {
    "useApifyProxy": true
  }
}
```

## Output

```json
{
  "input": {
    "label": "Input",
    "format": "string"
  },
  "itemType": {
    "label": "Type",
    "format": "string"
  },
  "username": {
    "label": "Username",
    "format": "string"
  },
  "postUrl": {
    "label": "Post URL",
    "format": "string"
  },
  "timestamp": {
    "label": "Posted at",
    "format": "string"
  },
  "caption": {
    "label": "Caption",
    "format": "string"
  },
  "likesCount": {
    "label": "Likes",
    "format": "integer"
  },
  "commentsCount": {
    "label": "Comments",
    "format": "integer"
  },
  "videoPlayCount": {
    "label": "Plays/views",
    "format": "integer"
  },
  "videoDurationSeconds": {
    "label": "Duration (s)",
    "format": "number"
  },
  "thumbnailUrl": {
    "label": "Thumbnail",
    "format": "string"
  },
  "highestResolutionImageUrl": {
    "label": "Best image",
    "format": "string"
  },
  "videoUrl": {
    "label": "Video",
    "format": "string"
  },
  "mediaUrls": {
    "label": "All media URLs",
    "format": "array"
  },
  "audioArtist": {
    "label": "Audio artist",
    "format": "string"
  },
  "audioTitle": {
    "label": "Audio title",
    "format": "string"
  },
  "isError": {
    "label": "Error",
    "format": "boolean"
  },
  "errorCode": {
    "label": "Error code",
    "format": "string"
  },
  "errorMessage": {
    "label": "Diagnostic",
    "format": "string"
  },
  "scrapedAt": {
    "label": "Scraped at",
    "format": "string"
  }
}
```

## About this Actor

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