Instagram Creator Lead Finder
Under maintenancePricing
Pay per usage
Instagram Creator Lead Finder
Under maintenanceDiscover creator/business Instagram accounts by hashtag and extract public bio emails, follower counts and categories.
Pricing
Pay per usage
Rating
0.0
(0)
Developer
Soft Reset
Maintained by CommunityActor stats
0
Bookmarked
1
Total users
0
Monthly active users
9 days ago
Last modified
Categories
Share
Discover creator and business Instagram accounts by hashtag, and extract their public bio/business email, follower count, category and profile URL.
Give it a list of hashtags and a follower band; it pulls recent post authors for each hashtag, looks up each profile, and outputs the accounts that fall inside your band — optionally only the ones that publish a contact email.
Input
| Field | Type | Notes |
|---|---|---|
hashtags | array | Hashtags to scan (no #). |
postsPerHashtag | integer | Recent authors to pull per hashtag (default 30). |
followerMin / followerMax | integer | Follower band to keep (default 1k–1M). |
onlyWithEmail | boolean | Keep only accounts with a public email (default false). |
sessionids | array | Required. Instagram sessionid cookies from accounts you control. |
minDelay / maxDelay | integer | Per-session request throttle, seconds (default 3–6). |
proxyConfiguration | object | Proxy to reach Instagram. Residential strongly recommended. |
Getting a sessionid
Log into an Instagram account you own in Chrome → DevTools → Application → Cookies
→ https://www.instagram.com → copy the value of the sessionid cookie. Supply
one or more; the Actor rotates across them and parks any that get rate-limited.
Output
One dataset item per in-band account:
{"username": "creatorhandle","name": "Full Name","followers": 24300,"email": "hello@creator.com","bio": "...","category": "Digital creator","profileUrl": "https://www.instagram.com/creatorhandle"}
Why this Actor exists (project note)
This is a publishable port of lead-engine-2/ig_scraper.py. Two reasons it's here:
- It unlocks free Apify Creator-plan credits (~$500 / 6 months). Publishing a
working Actor to the Apify Store qualifies the account for the Creator Plan.
Those credits then fund the lead discovery in
../lead-engine/discover.pyfrom Apify's own residential infrastructure — so no burner accounts run on your machine and nothing depends on your laptop being awake. - It runs on Apify Proxy (residential), which is the legitimate fix for the "datacenter IPs get IG-blocked instantly" problem that forced the old engine to run locally.
Publish steps (one-time)
npm install -g apify-cli # if not installedcd apify-actorapify login # use your ONE permanent Apify accountapify push # builds + uploads the Actor to your account
Then in the Apify Console: open the Actor → Publish → set it public to qualify for the Creator Plan. Run it once from the Console to confirm a green run and a populated dataset.
Local run
cd apify-actorapify run -i '{"hashtags":["parentingcoach"],"sessionids":["<your-sessionid>"],"postsPerHashtag":10}'