# Instagram NASA Reels Scraper

**Use case:** 

Scrape Instagram Reels from NASA with caption, views, likes, comments, music, and video URLs. Export structured results to JSON or CSV.

## Input

```json
{
  "urls": [
    "nasa"
  ],
  "maxItems": 50,
  "skipPinnedReels": false,
  "commentsPerReel": 0,
  "proxyConfiguration": {
    "useApifyProxy": true,
    "apifyProxyGroups": [
      "RESIDENTIAL"
    ]
  }
}
```

## Output

```json
{
  "thumbnailUrl": {
    "label": "Thumbnail",
    "format": "image"
  },
  "reelUrl": {
    "label": "Reel URL",
    "format": "link"
  },
  "username": {
    "label": "Username",
    "format": "text"
  },
  "caption": {
    "label": "Caption",
    "format": "text"
  },
  "viewCount": {
    "label": "Views",
    "format": "number"
  },
  "likeCount": {
    "label": "Likes",
    "format": "number"
  },
  "commentCount": {
    "label": "Comments",
    "format": "number"
  },
  "duration": {
    "label": "Duration (s)",
    "format": "number"
  },
  "musicTitle": {
    "label": "Music",
    "format": "text"
  },
  "musicArtist": {
    "label": "Artist",
    "format": "text"
  },
  "hashtags": {
    "label": "Hashtags",
    "format": "text"
  },
  "mentions": {
    "label": "Mentions",
    "format": "text"
  },
  "timestamp": {
    "label": "Posted",
    "format": "date"
  },
  "scrapedAt": {
    "label": "Scraped At",
    "format": "text"
  }
}
```

## About this Actor

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