# Curate Content Library from High-Performing Posts

**Use case:** 

Build a rich content library by extracting detailed information and media URLs from a collection of high-performing Instagram posts. This data can be used for i

## Input

```json
{
  "post_urls": [
    "https://www.instagram.com/p/C0eG4yCRgU2/",
    "https://www.instagram.com/reel/C0hM-7kRjLd/",
    "https://www.instagram.com/p/C0TFf7GRpC7/",
    "https://www.instagram.com/tv/C0qA7tXRrQx/",
    "https://www.instagram.com/p/C0kG4yCRgU2/",
    "https://www.instagram.com/reel/C0nM-7kRjLd/",
    "https://www.instagram.com/p/C0WFf7GRpC7/",
    "https://www.instagram.com/tv/C0vA7tXRrQx/"
  ]
}
```

## Output

```json
{
  "status": {
    "label": "Status",
    "format": "text"
  },
  "post_url": {
    "label": "Post URL",
    "format": "link"
  },
  "username": {
    "label": "Username",
    "format": "text"
  },
  "author_meta": {
    "label": "Author",
    "format": "object"
  },
  "media_type": {
    "label": "Type",
    "format": "text"
  },
  "like_count": {
    "label": "Likes",
    "format": "number"
  },
  "comment_count": {
    "label": "Comments",
    "format": "number"
  },
  "pub_date": {
    "label": "Published",
    "format": "date"
  },
  "caption": {
    "label": "Caption",
    "format": "text"
  },
  "thumbnail_url": {
    "label": "Thumbnail",
    "format": "image"
  }
}
```

## About this Actor

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