About
Returns the follower number an account publishes and a list of some of the accounts behind it. The word to hold on to is some: this samples the public relationship rather than exporting it, and the results table says how many rows it actually retrieved. Try nba, espn, or nfl.
How to use
One username per line. Each result shows the reported count, how many entries were retrieved, and the sample itself. Compare those first two numbers before reading anything into the list.
A sample, and why that is the honest word
Two numbers come back for every row: what the account reports as its follower count, and how many entries were actually retrieved. On any account of size those numbers are far apart, because collection stops at a limit rather than walking millions of records. Reading the sample as a complete list is the mistake this design is trying to prevent, which is why the retrieved count sits next to it.
What a sample can and cannot support
It supports a spot check: does this audience look like accounts with photos and posts, or like a wall of handles created last month. It does not support a percentage, an overlap analysis, or a claim about the whole audience, because a non random slice cannot carry those. If a number is going into a report, the sample is not where it should come from.
Why two views of one account disagree
Follower counts move constantly and different systems see different moments. Instagram removes suspended accounts in waves, deactivated accounts disappear and return, and the app updates on its own schedule. A gap of a few hundred on a large account is noise. A gap of an order of magnitude means you are reading the retrieved rows as if they were the count.
Cost, and doing this in the right order
This is a metered lookup and a follower sample is one of the more expensive things to ask for. Confirm the account exists and is reachable with the free checker first, and read the profile lookup to find out whether it is private, since a private account will return nothing here no matter how much quota you spend on it.
FAQ
Why is the retrieved number smaller than the count?
Because it is a sample. Collection stops at a limit, so any account with a real audience returns a fraction of it, and that is the expected behaviour rather than a truncated failure.
Can I export somebody's entire follower list?
Not here, and not reliably anywhere. Instagram does not serve complete follower lists to anonymous requests, and tools claiming otherwise are describing something they cannot do.
Why does the count differ from the app?
The app shows a live number and this shows what the upstream returned, which can lag. Deleted and suspended accounts also drop out at different moments in each view.
Does it work on private accounts?
No. A private account's follower list is not public, so there is nothing to sample.
Related tools
- Social account tools
- Instagram Username Checker
Check a list of Instagram usernames in one run.
- Instagram Public Region Lookup
Batch-resolve Instagram account countries.
- Instagram Profile Viewer
Read public profile fields for a list of accounts.
- Instagram Post Downloader
Collect public post media into a ZIP.
- Instagram Story Downloader
Save currently visible public stories as a ZIP.
- Instagram Following List
See a sample of accounts a profile follows.