# Instagram Profile Data Extractor

**Use case:** 

Collect detailed Instagram profile information, including followers, posts count, bio, images and more. Get data for multiple profiles by providing the URLs.

## Input

```json
{
  "profileUrls": [
    "https://www.instagram.com/instagram/",
    "https://www.instagram.com/cristiano/"
  ],
  "proxyConfiguration": {
    "useApifyProxy": false
  }
}
```

## Output

```json
{
  "profileUrl": {
    "label": "Profile URL",
    "format": "link"
  },
  "username": {
    "label": "Username",
    "format": "text"
  },
  "fullName": {
    "label": "Full Name",
    "format": "text"
  },
  "followers": {
    "label": "Followers",
    "format": "number"
  },
  "following": {
    "label": "Following",
    "format": "number"
  },
  "postsCount": {
    "label": "Posts",
    "format": "number"
  },
  "bio": {
    "label": "Bio",
    "format": "text"
  }
}
```

## About this Actor

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