# Instagram Follower Scraper with Auto Follow Feature

**Use case:** 

Scrape up to 1,000 followers from any Instagram account. Optionally, follow these users directly from your own Instagram account.

## Input

```json
{
  "targetUsername": "njdotcom",
  "sessionCookie": "***",
  "dryRun": false,
  "scrapeOnly": false,
  "maxFollowers": 1000,
  "maxFollowsPerRun": 200,
  "delayBetweenFollowsSeconds": 25,
  "randomDelayVariationSeconds": 8,
  "skipPrivateAccounts": false,
  "skipAlreadyFollowing": true,
  "rememberFollowedUsers": true,
  "resetFollowedMemory": false,
  "followMemoryStoreName": "instagram-follow-memory",
  "proxyConfiguration": {
    "useApifyProxy": true,
    "apifyProxyGroups": [
      "RESIDENTIAL"
    ],
    "apifyProxyCountry": "US"
  }
}
```

## Output

```json
{
  "username": {
    "label": "Username"
  },
  "fullName": {
    "label": "Name"
  },
  "isPrivate": {
    "label": "Private"
  },
  "followStatus": {
    "label": "Status"
  },
  "followDetail": {
    "label": "Detail"
  },
  "profileUrl": {
    "label": "Profile",
    "format": "link"
  },
  "scrapedAt": {
    "label": "When"
  }
}
```

## About this Actor

This example demonstrates how to use [Instagram Mass Scraper & Follower](https://apify.com/klazmolabs/massscraper-follower) with a specific input configuration. Visit the [Actor detail page](https://apify.com/klazmolabs/massscraper-follower) to learn more, explore other use cases, and run it yourself.