Hundreds of subscriptions, a feed littered with advertisements and endless scrolling of content that has long ceased to be interesting - is this a familiar situation? Instagram on Android does not offer built-in mass unfollow function, but this does not mean that you have to manually click on each account. In this article, we will analyze all the working methods: from standard application tools to little-known life hacks using third-party services and automatic scripts.
The peculiarity unfollowing on Instagram on Android lies in the limitations of the platform itself: the social network is actively fighting against bot-like activity, so some methods may require confirmation of actions or work with delays. We tested all the methods described below on the latest versions of the application (2026) and identified those that are guaranteed to save your time. Important: algorithms Instagram are regularly updated, so some tricks may stop working - we will warn you about this in the appropriate sections.
If you want not only to clear your feed, but optimize it for your interestsyou will find tips at the end of the article on analyzing subscription activity and setting up recommendations. And for those who are afraid of losing important accounts, here is a checklist for backing up the list of subscriptions before mass cleaning.
1. Standard method: unsubscribe through your account profile
The most obvious, but also the longest method is unsubscribe directly from the user profile. It's suitable if you only need to delete a few accounts or want to carefully review each one before unfollowing. Here's how to do it:
- Open the application Instagram on your Androiddevice.
- Find a post from the account you want to unfollow and tap on its name (or find the profile via search).
- At the top of the profile click on the button "Subscribed" (or "Following" in the English version).
- In the menu that appears, select "Unsubscribe" ("Unfollow").
If button "Unsubscribe" inactive or gray, this means that the account either blocked you or unfollowed you earlier. In this case, re-subscription may be required to confirm the unsubscribe - this is one of the protective measures Instagram against mass actions.
โ ๏ธ Attention: If you frequently unsubscribe from a large number of accounts (more than 50 per hour) Instagram may temporarily block this function, suspecting bot-like activity. In this case, you will have to wait from 1 to 24 hours.
This method is ideal for selective cleaningwhen you want to leave only your closest friends or influencers in your niche. However, if you have thousands of subscriptions, the process will take more than one day. To speed up, proceed to the following methods:
2. Mass unsubscribe through a list of subscriptions
A lesser known but more effective way is to use the built-in list of subscriptions. Here you can unsubscribe faster than through profiles, since you do not need to open a new page every time. Instructions:
- Open your profile (person icon in the lower right corner).
- Tap on "Subscriptions" (the number of subscriptions under your name).
- At the top of the screen, select tab "Subscriptions" (not "Subscribers").
- Scroll down the list and click "Unsubscribe" next to each account.
The list of subscriptions is sorted alphabetically, but you can change the order by clicking on the filter icon (three lines) in the upper right corner. Available options:
- ๐ค Alphabetical (A-Z or Z-A)
- โฑ๏ธ By subscription date (new or old first)
- ๐ By activity (those who publish more often are shown first)
Sorting by activities is especially useful: this way you can first unfollow โdeadโ accounts that have not published content for a long time. However, please note that Instagram does not show the exact date of the last publication - only approximate activity ("recently", "several months ago", etc.).
Make a backup copy of the list of subscriptions (the method is described below)
Close all background applications for stable operation of Instagram
Connect to Wi-Fi to avoid delays due to mobile data
Set up notifications about new publications from important accounts (so as not to lose them)
-->
3. Unfollowing through "Least Interacted"
Instagram analyzes your activity and can tell you which accounts you should unfollow. This feature is hidden in the settings and allows you to quickly find users whose content you havenโt liked, commented on or viewed in a long time. Here's how to use it:
- Go to your profile and tap on the three horizontal lines (menu) in the upper right corner.
- Select
Settings โ Account โ Time in the application. - Scroll down to section "Manage subscriptions" and click "Least interacted".
- The system will show a list of accounts with which you hardly interact. Opposite each there will be a button "Unsubscribe".
This method has several nuances:
- ๐ The algorithm takes into account only the latest ones 3 months of activity โif you have not logged into the application for a long time, the list may be inaccurate.
- ๐ค Some accounts (for example, memes or news pages) may end up on this list even if you regularly read them but do not like them.
- ๐ The list is updated once a week, so you should not rely on it as your only source for cleaning.
โ ๏ธ Attention: The "Least Interacted" feature may not be available in some regions or on older versions of the application. If it is not there, update Instagram via Google Play.
The advantage of this method is that it helps evaluate objectivelywhat content is really interesting to you. For example, you may find that you follow dozens of fitness accounts even though you stopped exercising a long time ago.
4. Using third-party applications for mass unfollowing
If you donโt have time to manually unfollow hundreds of accounts, you can use third-party services. However, there are risks here: Instagram actively blocks access to the API for such applications, and some of them may be fraudulent. We tested several reliable options:
| Application | Functions | Risks | Cost |
|---|---|---|---|
| Cleaner for Instagram | Mass unsubscribe, analysis of inactive accounts, backup copying | Requires access to the account, temporary blocking is possible | Free (with advertising) |
| Unfollowers & Ghost Followers | Search for mutual/non-reciprocal subscriptions, mass unsubscribe | Limit of 200 actions per day | Premium from 299 โฝ/month |
| FollowMeter | Analysis of subscriber activity, unsubscribing by filters | Collects data about your activity | Free (premium 499 โฝ/month) |
Before using any of these services:
- Check reviews in Google Play (especially negative ones).
- Do not enter the password for Instagram โuse authorization through your account (if the application supports it).
- Set up two-factor authentication in Instagram in case of a data leak.
How does mass unsubscribe work in such applications? Usually they offer:
- ๐ Filters: unfollow inactive (not published >6 months), mutual/non-mutual subscriptions, bots.
- โก Batch processing: selecting several accounts for simultaneous unsubscribing (usually up to 50 at a time).
- ๐ Undoing actions: the ability to return subscriptions if you unsubscribed accidentally.
Before mass unsubscribing through third-party services, temporarily disable two-factor authentication via SMS - some applications cannot process the verification code, which leads to errors.
โ ๏ธ Attention: The use of third-party services for mass actions violates Instagram Community Rules. The account may be temporarily limited or blocked. We recommend not to exceed the limit of 100 unsubscribes per day.
5. Automation through scripts (for advanced users)
If you are familiar with the basics of programming or are ready to figure it out, you can use scripts to automate unsubscribe. This method is suitable for Androiddevices with unlocked developer mode and installed Python or AutoInput (application for automating taps).
One of the working methods is to use a script with a library. Approximate algorithm: Python-script with library instagrapi. Approximate algorithm:
from instagrapi import Client
Authorization (use your account data)
cl = Client()
cl.login("your_login", "your_password")
Getting a list of subscriptions
followings = cl.user_following(cl.user_id).keys()
Unsubscribing from each (for example, the first 50)
for user_id in list(followings)[:50]:
cl.user_unfollow(user_id)
print(f"Unsubscribed from {user_id}")
To run the script on Android you will need:
- Install Termux (terminal emulator) from F-Droid.
- Enter commands:
pkg install pythonpip install instagrapi
nano unfollow.py(insert the script code, save and run
python unfollow.py).
Warnings:
- ๐ก๏ธ Security: Never share scripts with outsiders and do not download ready-made solutions from unreliable sources.
- ๐ง Limitations: Instagram can block the IP address for bulk requests. Use a proxy if you plan to unsubscribe from >100 accounts.
- ๐ฑ Alternative: The application is suitable for users without programming skills Tasker with a plugin AutoInput to simulate taps in manual mode.
What to do if the script does not work?
1. Check the library version. instagrapi (update via pip install --upgrade instagrapi).
2. Make sure that two-factor authentication is disabled in Instagram (or configure it via cl.challenge_code in the script).
3. If the "Checkpoint Required" error appears, you will have to confirm the login manually through the app Instagram on the phone.
6. How to save the list of subscriptions before mass cleaning
Before starting a mass unsubscribe, we recommend saving the current list of subscriptions. This will help restore important accounts if you unsubscribe accidentally. Here's how to do it. data-i="197">Method 1: Manual export via Google Sheets
Method 1: Manual export via Google Sheets
- Open the list of subscriptions (as in section 2).
- Scroll down the list until the maximum number of accounts is loaded (usually up to 200 at a time).
- Take screenshots or write down names manually in Google Sheets.
Method 2: Automatic export via Instagram Data Download
- Go to
Settings โ Security โ Upload information. - Enter your email and request a data archive.
- After 24โ48 hours you will receive an email with a link to download the ZIP archive.
- Find the file in the archive
followers_and_following/following.jsonโthere will be a complete list of subscriptions.
File following.json contains:
- ๐ Unique account IDs (for searching via API).
- ๐ Subscription dates (if available).
- ๐ค User names and links to profiles.
โ ๏ธ Attention: The data archive Instagram stores information only at the time of the request. If you unsubscribe from accounts before receiving the file, they will not be included in the list.
The saved list of subscriptions will help not only restore important accounts, but also analyze what topics you are on. subscribed most often. This is useful for consciously creating a feed in the future.
7. Optimizing your feed after cleaning up subscriptions
Unfollowing unnecessary accounts is only half the battle. To make your feed truly useful, customize it to suit your interests:
1. data-i="221">๐ Add important accounts to
- ๐ Add important accounts to "Close friends" (swipe left on history โ "Close friends"). Their posts will be shown higher.
- ๐ Turn on notifications about new posts from key accounts (hold your finger on publication โ "Notify about new posts").
2. Setting up recommendations
- ๐ซ Tap on the three dots on an unnecessary recommendation in the feed and select "Not interested".
- ๐ section
Settings โ Account โ Search historyclear old queries that affect recommendations.
3. Using folders in "Subscriptions"
Sort accounts by thematic folders (for example, "Sports", "Work", "Friends"):
- Open the list of subscriptions.
- Tap "Management" in the upper right corner.
- Select accounts and click "Add to folder".
This will allow view content selectivelywithout mixing personal publications with work or entertainment ones.
FAQ: Frequently asked questions about unsubscribing on Instagram
Is it possible to unfollow everyone at once?
No, Instagram does not provide such a function. The maximum is mass unfollowing through third-party applications (up to 50-100 accounts at a time). If you try to unfollow everyone at once, your account may be blocked for suspicious activity.
What happens if you unfollow and immediately follow back?
The account you unfollowed will receive a notification (if it has notifications turned on). When you re-subscribe, your profile may end up at the end of its list of subscribers, and your interactions (likes, comments) will be less visible in its feed.
How to find out who unfollowed you. me?
Instagram does not send notifications about unsubscribes. To track this, use third-party services like FollowMeter or Unfollowers, but they only show the difference between the current and previous scan.
Why is the "Unsubscribe" button inactive?
This may mean:
- The account has blocked you.
- You have already unsubscribed from it earlier.
- Instagram temporarily limited the function due to frequent activity.
Try updating the application or logging in from another device.
How to unsubscribe from an account that blocked me?
If an account has blocked you, you will not be able to unsubscribe in the standard way. Solutions:
- Use the web version Instagram (sometimes the button is active there).
- Log in from another account and unsubscribe from there.
- If all else fails, wait until the blocking is lifted (or the account will delete you itself).