Instagram Followers Scraper avatar

Instagram Followers Scraper

Under maintenance

Pricing

from $0.50 / 1,000 results

Go to Apify Store
Instagram Followers Scraper

Instagram Followers Scraper

Under maintenance

Scrape Instagram followers for any public profile. Provide username or profile URL and max followers count.

Pricing

from $0.50 / 1,000 results

Rating

0.0

(0)

Developer

Ghost Rider

Ghost Rider

Maintained by Community

Actor stats

0

Bookmarked

6

Total users

4

Monthly active users

3 days ago

Last modified

Categories

Share

Apify Actor that scrapes followers from public Instagram profiles.

Input

FieldRequiredDescription
usernameYes*Instagram username (without @)
profileUrlYes*Profile URL — username is extracted automatically
maxFollowersYesHow many followers to scrape
proxyConfigurationNoStrongly recommended: Apify residential proxy
batchSizeNoDataset flush size (default: 1000)

* Provide either username or profileUrl.

Output

Each dataset item:

{
"username_scrape": "aakrititiwari3010",
"type": "Followers",
"full_name": "Kartik Khanderao",
"id": "44402520862",
"is_private": true,
"is_verified": false,
"profile_pic_url": "https://...",
"username": "kartikkhanderao08"
}

Local run

pip install -r requirements.txt
playwright install chromium
python scripts/run_local.py

First run downloads Chromium (~150 MB) for session bootstrap.

Create storage/key_value_stores/default/INPUT.json:

{
"username": "instagram",
"maxFollowers": 100,
"proxyConfiguration": {
"useApifyProxy": true,
"apifyProxyGroups": ["RESIDENTIAL"]
}
}

Deploy to Apify

npm install -g apify-cli
apify login
apify push

Pricing (PPE): Set pay-per-result pricing in the Apify Console under Actor → Monetization. No pricing logic lives in this codebase — results are saved with Actor.push_data() only.

Notes

  • Uses Instagram direct API with guest session (no third-party API, no user login cookie).
  • Public profiles only.
  • Residential proxy is required for reliable runs; without it Instagram often returns HTTP 429.