Instagram Followers & Following Scraper β€” Bulk avatar

Instagram Followers & Following Scraper β€” Bulk

Pricing

from $0.90 / 1,000 results

Go to Apify Store
Instagram Followers & Following Scraper β€” Bulk

Instagram Followers & Following Scraper β€” Bulk

Collect followers or following lists from one or more public Instagram accounts. Resume large jobs with a cursor and optionally enrich every result with full public profile data.

Pricing

from $0.90 / 1,000 results

Rating

0.0

(0)

Developer

ToolzerHub

ToolzerHub

Maintained by Community

Actor stats

1

Bookmarked

41

Total users

2

Monthly active users

2.6 days

Issues response

a day ago

Last modified

Share

Build resumable Instagram follower or following datasets, with optional deep profile enrichment.

ToolzerHub maintains Instagram Followers & Following Scraper for audience operations where completeness, restartability, and a documented enrichment choice matter. One configuration supports either list direction across one or more seed profiles.

Define the audience operation

Select followers or following, cap the initial run, and retain the cursor when a large account needs another pass. Deep enrichment should be enabled when the destination workflow genuinely needs profile metadata beyond list identity.

Followers

Set List Direction to followers to pull who follows each seed account.

FieldTypeRequiredDescription
profilesarrayYesInstagram accounts to pull the list from
listTypestringYesWhich connection list to collect
limitintegerNoStop after this many rows per account (0 = pull the whole list)

Following

Set List Direction to following to pull who each seed account follows.

FieldTypeRequiredDescription
profilesarrayYesInstagram accounts to pull the list from
listTypestringYesWhich connection list to collect
limitintegerNoStop after this many rows per account (0 = pull the whole list)

Resume a big pull

Drop a cursor from a prior run's log into Continue From to pick up where it left off.

FieldTypeRequiredDescription
profilesarrayYesInstagram accounts to pull the list from
listTypestringYesWhich connection list to collect
continueFromstringNoPaste the token from an earlier run's log (look for 'πŸ”– CONTINUE TOKEN') to resume where it stopped.

Deep enrichment

Turn on Deep Profile Fetch to get a full profile object per row instead of the lightweight summary.

FieldTypeRequiredDescription
deepEnrichbooleanNoSwap each row for the account's full public profile (slower, adds a billable event per row)
limitintegerNoStop after this many rows per account (0 = pull the whole list)

Example controlled pull

{
"profiles": [
"nasa"
],
"listType": "followers",
"limit": 20
}

Dataset rows with operational context

Account identity

FieldTypeDescription
usernamestringInstagram username of the account.
full_namestringDisplay name shown on the profile.
idstringInstagram numeric user ID.
is_verifiedbooleanWhether the account is verified (blue badge).
is_privatebooleanWhether the account is private.
profile_pic_urlstringProfile picture URL.

Run context

FieldTypeDescription
source_usernamestringThe account whose followers/followings this record belongs to.

Enrichment

FieldTypeDescription
enrichedbooleanWhether this record was replaced with a full enriched profile.

Result preview

{
"username": "nasaartemis",
"full_name": "NASA Artemis",
"id": "1104426670",
"is_private": false,
"is_verified": true,
"profile_pic_url": "https://instagram.fadd2-1.fna.fbcdn.net/example.jpg",
"source_username": "nasa",
"enriched": false
}

Cost and scaling policy

Billing follows Apify's pay-per-result model. You're only charged for rows that land in the dataset, per the pricing shown on this Actor's Pricing tab. Turning on profile enrichment adds its own billable event per record.

Apify's free credits may cover small test pulls, plus whatever free monthly credits your Apify plan includes.

Test with a small result cap first, then scale up once you know the list size you're dealing with.

ToolzerHub recommends approving a small run first, checking seed and list-direction fields, then saving the cursor and enrichment policy with the workflow configuration.

Responsible audience handling

Both tools only touch public Instagram data β€” no login walls, no private accounts, no bypassing access controls. Don't use them to harvest private information or to contact people in ways that break privacy law, Instagram's terms, or your own compliance rules. When in doubt, get a lawyer's opinion.

Run this Actor from code

Python

from apify_client import ApifyClient
client = ApifyClient("YOUR_APIFY_API_TOKEN")
run = client.actor("toolzerhub/instagram-profile-follower-followee-scraper").call(run_input={
"profiles": [
"nasa"
],
"listType": "followers",
"limit": 20
})
for item in client.dataset(run["defaultDatasetId"]).iterate_items():
print(item)

Node.js

import { ApifyClient } from "apify-client";
const client = new ApifyClient({ token: "YOUR_APIFY_API_TOKEN" });
const run = await client.actor("toolzerhub/instagram-profile-follower-followee-scraper").call({
"profiles": [
"nasa"
],
"listType": "followers",
"limit": 20
});
const { items } = await client.dataset(run.defaultDatasetId).listItems();
console.log(items);

Complementary ToolzerHub Actors

  • Instagram Followers Scraper β€” No Login β€” Export the complete follower list of one or more public Instagram accounts without providing an Instagram login. Resume large accounts with a cursor and optionally enrich every follower profile.
  • LinkedIn People Search Scraper β€” No Cookies β€” Search LinkedIn people without providing LinkedIn cookies. Find profiles by name, title, company, school, location, industry, and other filters, then paginate structured results.
  • TikTok Shop Products Scraper β€” Search TikTok Shop by keyword with automatic pagination, region support, and an optional detail-enrichment checkbox that adds product, shop, review, voucher, category, and shop-performance data to every saved result.

ToolzerHub support

Spotted a bug, a missing field, or want a feature? Open an issue on the Actor page and we'll take a look.

Contact: contact@toolzerhub.com