Find Who Doesn't Follow You Back on Instagram

Instafication helps you identify Instagram users who don't follow you back in 3 simple steps, with no login required and complete privacy.

1

Copy the Code

Copy the code below and paste it in your browser console while on Instagram

2

Paste the Results

Paste the results from your followers and following lists below

3

Get Your Results

Click "Check Unfollowers" to see who doesn't follow you back

Step 1: Copy This Code

function extractUsernames() {
    const usernames = [];
    const usernameElements = document.querySelectorAll('._ap3a, ._aaco, ._aacw, ._aacx, ._aad7, ._aade');
    usernameElements.forEach(element => {
        const username = element.textContent.trim();
        if (username && 
            !username.includes('Follow') && 
            !username.includes('Following') &&
            !username.includes('Verified') &&
            username.length > 1 && 
            username.length < 31) {
            usernames.push(username);
        }
    });
    const uniqueUsernames = [...new Set(usernames)];
    return uniqueUsernames;
}
const followersUsernames = extractUsernames();
console.log("FOLLOWERS LIST:");
console.log(followersUsernames);

How to use the code:

  1. Go to your Instagram profile on desktop (this won't work on mobile)
  2. Open your followers list by clicking on your followers count
  3. Important: Scroll all the way down the list until all followers are loaded
  4. Press F12 or Ctrl+Shift+I to open developer tools
  5. Click on the "Console" tab
  6. Type allow pasting and press Enter
  7. Paste the code above and press Enter
  8. Right-click on the results array and select "Copy object"
  9. Paste the copied data into the "Followers List" box below
  10. Repeat steps 2-9 for your following list (click on your following count)

Visual Guide:

Step-by-step tutorial with screenshots

Detailed visual guide showing each step of the process

Pro Tip: For accurate results, make sure you scroll to load ALL followers and following accounts before running the code.

Step 2: Paste Your Data

Step 3: Your Results

Frequently Asked Questions

Is this tool safe to use?
Yes, Instafication is completely safe. The tool runs entirely in your browser and doesn't store any of your Instagram data. Your information never leaves your computer.
Why do I need to use the console?
Instagram doesn't provide a public API for this kind of data. The console code simply extracts the usernames that are already visible on your screen.
Do I need to log in to use this tool?
No login is required for Instafication itself. You just need to be logged into your Instagram account when you run the console code.
I'm not getting any results or the results seem incomplete. What should I do?

Here are some troubleshooting steps:

  1. Make sure you've scrolled all the way down in both your followers and following lists before running the code. Instagram loads users dynamically as you scroll.
  2. Check that you're using the right code for each list (followers vs. following).
  3. Try refreshing Instagram and starting over.
  4. Make sure you're on desktop - this won't work on mobile.
  5. Try using a different browser if you continue to have issues.
How accurate is this tool?
The tool is as accurate as the data you provide. If you don't scroll to load all followers/following, the results will be incomplete. For the most accurate results, make sure to scroll through both lists completely before running the code.
Why is Instafication better than other unfollower tools?
Unlike many other tools that require you to provide your Instagram login credentials (which can be risky), Instafication works with data you extract yourself while already logged in. This means your password stays private and secure. Plus, we don't store any of your data on our servers - everything happens right in your browser.

Troubleshooting Guide

Console Error: "allow pasting" not working

Try typing allow pasting exactly as shown (with a space) and press Enter. If that doesn't work, try refreshing the page and trying again.

Empty Results

Make sure you've scrolled to load ALL followers/following. Instagram loads them as you scroll. Try scrolling up and down several times to ensure everything is loaded.

Can't Copy the Results

After running the code, right-click on the array that appears in the console and select "Copy object". If that option doesn't appear, try clicking on the array first to select it.

Instagram UI Changed

If Instagram updates their UI, our code might need updating. Check back for updates or contact us through GitHub if you notice the tool isn't working.