# Find mutual followers and following on Instagram

**Use case:** 

Pull both a public account's followers and following in one run to surface mutual connections, each enriched with profile and contact details.

## Input

```json
{
  "usernames": [
    "nike"
  ],
  "extractFollowers": true,
  "extractFollowing": true,
  "maxResults": 25,
  "minFollowers": 0,
  "maxFollowers": 0,
  "accountType": "any",
  "mustBeVerified": false,
  "profileLanguage": "any",
  "minEngagementRate": 0,
  "lastPostDays": 0,
  "lastReelDays": 0,
  "contactInfoType": "any",
  "keywords": [],
  "keywordLocation": "bio_or_name",
  "categoryFilter": "any"
}
```

## Output

```json
{
  "Account": {
    "label": "Instagram account URL",
    "format": "string"
  },
  "Profile Picture": {
    "label": "Avatar URL",
    "format": "string"
  },
  "Full Name": {
    "label": "Display name",
    "format": "string"
  },
  "Source": {
    "label": "Discovery source",
    "format": "string"
  },
  "Mutual Follow": {
    "label": "Mutual follow",
    "format": "string"
  },
  "Followers Count": {
    "label": "Followers",
    "format": "integer"
  },
  "Following Count": {
    "label": "Following",
    "format": "integer"
  },
  "Biography": {
    "label": "Bio text",
    "format": "string"
  },
  "Email": {
    "label": "Email (from bio / contact button)",
    "format": "string"
  },
  "Email Source": {
    "label": "Email source",
    "format": "string"
  },
  "Phone": {
    "label": "Phone (from bio / contact button)",
    "format": "string"
  },
  "External URL": {
    "label": "Website (bio link)",
    "format": "string"
  },
  "Address": {
    "label": "Physical address (business)",
    "format": "string"
  },
  "Category": {
    "label": "Business category",
    "format": "string"
  },
  "Detected Language": {
    "label": "Detected language",
    "format": "string"
  },
  "Reels Count": {
    "label": "Reels posted",
    "format": "integer"
  },
  "Median Views": {
    "label": "Median Reel views",
    "format": "integer"
  },
  "Views/Followers Ratio": {
    "label": "Views per follower (%)",
    "format": "string"
  },
  "Median ER": {
    "label": "Engagement rate (%)",
    "format": "string"
  },
  "Quality": {
    "label": "Account quality",
    "format": "string"
  },
  "Last Post Within (Days)": {
    "label": "Days since last post",
    "format": "integer"
  },
  "Last Reel (Days Ago)": {
    "label": "Days since last Reel",
    "format": "integer"
  },
  "Email from Posts": {
    "label": "Email parsed from post captions",
    "format": "string"
  },
  "Phone from Posts": {
    "label": "Phone parsed from post captions",
    "format": "string"
  }
}
```

## About this Actor

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