# Instagram Highlight Reels Extractor

**Use case:** 

Extract Instagram story highlights from public profiles with media URLs, highlight titles, captions, timestamps, and profile fields.

## Input

```json
{
  "usernames": [
    "nasa"
  ],
  "includeHighlights": true,
  "maxHighlights": 5,
  "includeProfile": true,
  "proxyConfiguration": {
    "useApifyProxy": true,
    "apifyProxyGroups": [
      "RESIDENTIAL"
    ],
    "apifyProxyCountry": "US"
  }
}
```

## Output

```json
{
  "storyId": {
    "label": "Story ID",
    "format": "text"
  },
  "userId": {
    "label": "User ID",
    "format": "text"
  },
  "username": {
    "label": "Username",
    "format": "text"
  },
  "profileUrl": {
    "label": "Profile URL",
    "format": "link"
  },
  "mediaType": {
    "label": "Media Type",
    "format": "text"
  },
  "mediaUrl": {
    "label": "Media URL",
    "format": "link"
  },
  "thumbnailUrl": {
    "label": "Thumbnail",
    "format": "link"
  },
  "timestamp": {
    "label": "Posted",
    "format": "date"
  },
  "expiresAt": {
    "label": "Expires",
    "format": "date"
  },
  "durationSecs": {
    "label": "Duration (s)",
    "format": "number"
  },
  "caption": {
    "label": "Caption",
    "format": "text"
  },
  "isHighlight": {
    "label": "Is Highlight",
    "format": "boolean"
  },
  "highlightId": {
    "label": "Highlight ID",
    "format": "text"
  },
  "highlightTitle": {
    "label": "Highlight Title",
    "format": "text"
  },
  "musicArtist": {
    "label": "Music Artist",
    "format": "text"
  },
  "musicTitle": {
    "label": "Music Title",
    "format": "text"
  },
  "hasLink": {
    "label": "Has Link",
    "format": "boolean"
  },
  "linkUrl": {
    "label": "Link URL",
    "format": "link"
  },
  "stickerTypes": {
    "label": "Sticker Types",
    "format": "text"
  },
  "viewerCount": {
    "label": "Viewers",
    "format": "number"
  },
  "scrapedAt": {
    "label": "Scraped At",
    "format": "text"
  }
}
```

## About this Actor

This example demonstrates how to use [Instagram Stories Scraper — Stories & Highlights Metadata](https://apify.com/automation-lab/instagram-stories-scraper) with a specific input configuration. Visit the [Actor detail page](https://apify.com/automation-lab/instagram-stories-scraper) to learn more, explore other use cases, and run it yourself.