# Track age-restricted (18+) brand Instagram posts

**Use case:** 

Scrape posts from age-restricted 18+ Instagram accounts (alcohol, vape, nightlife) that anonymous visitors and most scrapers cannot see.

## Input

```json
{
  "usernames": [
    "budweiser",
    "guinness",
    "absolutvodka"
  ],
  "maxPosts": 30
}
```

## Output

```json
{
  "username": {
    "label": "Username",
    "format": "text"
  },
  "post_type": {
    "label": "Type",
    "format": "text"
  },
  "taken_at": {
    "label": "Posted at",
    "format": "date"
  },
  "permalink": {
    "label": "Link",
    "format": "link"
  },
  "caption": {
    "label": "Caption",
    "format": "text"
  },
  "like_count": {
    "label": "Likes",
    "format": "number"
  },
  "comment_count": {
    "label": "Comments",
    "format": "number"
  },
  "view_count": {
    "label": "Views",
    "format": "number"
  },
  "hashtags": {
    "label": "Hashtags",
    "format": "array"
  },
  "mentions": {
    "label": "Mentions",
    "format": "array"
  },
  "is_paid_partnership": {
    "label": "Paid partnership",
    "format": "boolean"
  }
}
```

## About this Actor

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