# Get a full Instagram profile with posts and highlights

**Use case:** 

One combined record per Instagram username: full profile metadata plus recent posts, stories and highlight reels in a single run. No login required.

## Input

```json
{
  "usernames": [
    "nasa",
    "natgeo"
  ],
  "postsPerUser": 12,
  "storiesPerUser": 0,
  "highlightsPerUser": 5,
  "itemsPerHighlight": 10,
  "concurrency": 3,
  "delayBetweenRequests": 1,
  "proxyConfiguration": {
    "useApifyProxy": true,
    "apifyProxyGroups": [
      "RESIDENTIAL"
    ]
  }
}
```

## Output

```json
{
  "username": {
    "label": "Username"
  },
  "postsCount": {
    "label": "Posts"
  },
  "storiesCount": {
    "label": "Stories"
  },
  "highlightsCount": {
    "label": "Highlights"
  }
}
```

## About this Actor

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