# Get the 10 latest posts from an Instagram account

**Use case:** 

Fetch the 10 most recent posts from any Instagram account, with captions, like and comment counts, media URLs and timestamps. No login required.

## Input

```json
{
  "usernames": [
    "natgeo"
  ],
  "maxPostsPerUser": 10,
  "concurrency": 5,
  "delayBetweenRequests": 1,
  "proxyConfiguration": {
    "useApifyProxy": true,
    "apifyProxyGroups": [
      "RESIDENTIAL"
    ]
  }
}
```

## Output

```json
{
  "username": {
    "label": "Username"
  },
  "shortcode": {
    "label": "Shortcode"
  },
  "mediaType": {
    "label": "Media"
  },
  "timestamp": {
    "label": "Posted"
  },
  "likeCount": {
    "label": "Likes"
  },
  "commentCount": {
    "label": "Comments"
  },
  "videoViewCount": {
    "label": "Views"
  },
  "caption": {
    "label": "Caption"
  },
  "displayUrl": {
    "label": "Image"
  }
}
```

## About this Actor

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