# Instagram Influencer Leads Extractor

**Use case:** 

Extract follower counts for influencer shortlists to qualify creator leads, compare audience size, and plan outreach campaigns.

## Input

```json
{
  "usernames": [
    "mkbhd",
    "zachking",
    "humansofny",
    "natgeo"
  ],
  "maxRetries": 3,
  "delayBetweenRequestsMs": 700
}
```

## Output

```json
{
  "username": {
    "label": "Username",
    "format": "text"
  },
  "fullName": {
    "label": "Full Name",
    "format": "text"
  },
  "followersCount": {
    "label": "Followers",
    "format": "number"
  },
  "followingCount": {
    "label": "Following",
    "format": "number"
  },
  "postsCount": {
    "label": "Posts",
    "format": "number"
  },
  "isVerified": {
    "label": "Verified",
    "format": "boolean"
  },
  "isPrivate": {
    "label": "Private",
    "format": "boolean"
  },
  "error": {
    "label": "Error",
    "format": "text"
  }
}
```

## About this Actor

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