# Build an Instagram public profile audit dataset

**Use case:** 

Export profile rows for a short list of public accounts to compare bios, URLs, and counts.

## Input

```json
{
  "profileUrlsOrHandles": [
    "nasa",
    "natgeo",
    "instagram"
  ],
  "postUrls": [
    "https://www.instagram.com/p/DalfZ3Jn8yi/"
  ],
  "maxPostsPerProfile": 0,
  "maxDirectUrls": 20,
  "includeReels": false,
  "maxProfiles": 3,
  "includePosts": false,
  "proxyConfiguration": {
    "useApifyProxy": true
  }
}
```

## Output

```json
{
  "input": {
    "label": "Input",
    "format": "string"
  },
  "itemType": {
    "label": "Type",
    "format": "string"
  },
  "username": {
    "label": "Username",
    "format": "string"
  },
  "postUrl": {
    "label": "Post URL",
    "format": "string"
  },
  "timestamp": {
    "label": "Posted at",
    "format": "string"
  },
  "caption": {
    "label": "Caption",
    "format": "string"
  },
  "likesCount": {
    "label": "Likes",
    "format": "integer"
  },
  "commentsCount": {
    "label": "Comments",
    "format": "integer"
  },
  "videoPlayCount": {
    "label": "Plays/views",
    "format": "integer"
  },
  "videoDurationSeconds": {
    "label": "Duration (s)",
    "format": "number"
  },
  "thumbnailUrl": {
    "label": "Thumbnail",
    "format": "string"
  },
  "highestResolutionImageUrl": {
    "label": "Best image",
    "format": "string"
  },
  "videoUrl": {
    "label": "Video",
    "format": "string"
  },
  "mediaUrls": {
    "label": "All media URLs",
    "format": "array"
  },
  "audioArtist": {
    "label": "Audio artist",
    "format": "string"
  },
  "audioTitle": {
    "label": "Audio title",
    "format": "string"
  },
  "isError": {
    "label": "Error",
    "format": "boolean"
  },
  "errorCode": {
    "label": "Error code",
    "format": "string"
  },
  "errorMessage": {
    "label": "Diagnostic",
    "format": "string"
  },
  "scrapedAt": {
    "label": "Scraped at",
    "format": "string"
  }
}
```

## About this Actor

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