Disclaimer: I won't be naming the Streaming platform, which I am creating my Bot for, but I guess you can imagine which one I'm talking about. I'll be replacing the name of the platform with "Scare".
The Beginnings
Starting this thread now feels a bit like cheating - Why do you ask?
Well, technically my journey started more than a year ago. I’ll elaborate.
I have been in the SMM Service industry on and off since I’ve been fourteen, but only really started earning money years later with a few B2C Shops. Money coming in always feels great, but Google Ads, Meta Ads, Customer Support, SEO and Shop design isn’t really for me. I am more of a technical person, so two years ago I started tinkering on my own Instagram and TikTok Bots (I even started a My Journey on those). In the end they didn’t end up working, but I had so much fun doing it, that a year ago I tried again with Scare (As I announced, this is the name I will be using for the platform).
The first Try
I had learned a lot in the year and got things working - kind of at least. Using Browser automation and some advanced fingerprint spoofing I was able to generate ~100 accounts and follow with them, but after that I was encountering more and more blocks. Frustrated I tried just using Requests and cutting out the Browser to more closely mimic real users and gaining more control over what to spoof and how to spoof it. After a few days I was able to create accounts, but they weren’t able to follow anyone. For a few days I kept trying, tinkering with settings, trying to make additional requests, changing proxies and more - Nothing worked! So I gave up. My main business was getting more time demanding again and I kind of forgot about the project for almost a year.
Then, about 2 month ago, I got sick. It was nothing serious, just a minor cold, but I was bound to my bed and went through my laptop and my Github, there I found the old project files and just gave it another go.
This time I was more persistent, I got the account creation going again after a day or two. Scare had made changes in the time, but they were minor and I managed to circumvent their systems successfully. But once again my accounts weren't able to follow other accounts. But this time I kept at it and after 10 days of trial and error, trying out different requests, changing useragents I managed to get this working.
I was jumping up and down through my apartment, being struck by joy. Unfortunately I can't share the exact steps I undertook to get it working, but let's just say it involved mimicing real user behaviour.
From Prototype to product
Having a proof of concept was amazing, but nothing more than a few Python files on my laptop, which allowed me to create trash accounts and follow with them. The accounts didn't have realistic usernames, weren’t using persistent sessions, didn't have profile pictures and I was controlling everything through a shell.
So I layed out a plan:
The UI is clean and allows me to spawn Workers to create Accounts and also allows me to spawn follow jobs by entering a username and the desired amount of followers. As said earlier, I am not much a designer - so I let Codex do this for me. I think it looks clean!

How to monetize
We now arrived in the present, I have a working product - now I have to monetize it. My current goal is to offer a Follow Service to SMM panels primarily focusing selling Followers for targeted Locations (e.g. Turkey, USA, etc). I have the service attached to my own SMM Panel, which I have until now only used to run my B2C Shops, but I hope to sell the Scare Followers through it.
I observed that many of the followers being offered in Panels are trash, as they don’t have profile pictures, random strings as names and are being deleted after days.
Having followers which don’t look like bots, should be a selling point in my opinion.
The next steps
There are quite a few ideas that I still have for my project, as I am not yet 100% happy with the followers. After around 1-2 weeks some profiles incur problems with following. I am aiming to reduce this rate by making the follow process more realistic and mimicing the requests of Scare more closely.
Also currently the profiles don’t provide any other value than being “dumb” followers.
After understanding so much about the Scare API I want to implement a full viewer bot with sophisticated controls like Live Chatters, etc.
But for now I will try to get my Followers into some Panels by sending Cold Emails / Telegram messages.
The Beginnings
Starting this thread now feels a bit like cheating - Why do you ask?
Well, technically my journey started more than a year ago. I’ll elaborate.
I have been in the SMM Service industry on and off since I’ve been fourteen, but only really started earning money years later with a few B2C Shops. Money coming in always feels great, but Google Ads, Meta Ads, Customer Support, SEO and Shop design isn’t really for me. I am more of a technical person, so two years ago I started tinkering on my own Instagram and TikTok Bots (I even started a My Journey on those). In the end they didn’t end up working, but I had so much fun doing it, that a year ago I tried again with Scare (As I announced, this is the name I will be using for the platform).
The first Try
I had learned a lot in the year and got things working - kind of at least. Using Browser automation and some advanced fingerprint spoofing I was able to generate ~100 accounts and follow with them, but after that I was encountering more and more blocks. Frustrated I tried just using Requests and cutting out the Browser to more closely mimic real users and gaining more control over what to spoof and how to spoof it. After a few days I was able to create accounts, but they weren’t able to follow anyone. For a few days I kept trying, tinkering with settings, trying to make additional requests, changing proxies and more - Nothing worked! So I gave up. My main business was getting more time demanding again and I kind of forgot about the project for almost a year.
Then, about 2 month ago, I got sick. It was nothing serious, just a minor cold, but I was bound to my bed and went through my laptop and my Github, there I found the old project files and just gave it another go.
This time I was more persistent, I got the account creation going again after a day or two. Scare had made changes in the time, but they were minor and I managed to circumvent their systems successfully. But once again my accounts weren't able to follow other accounts. But this time I kept at it and after 10 days of trial and error, trying out different requests, changing useragents I managed to get this working.
I was jumping up and down through my apartment, being struck by joy. Unfortunately I can't share the exact steps I undertook to get it working, but let's just say it involved mimicing real user behaviour.
From Prototype to product
Having a proof of concept was amazing, but nothing more than a few Python files on my laptop, which allowed me to create trash accounts and follow with them. The accounts didn't have realistic usernames, weren’t using persistent sessions, didn't have profile pictures and I was controlling everything through a shell.
So I layed out a plan:
- Add a Postgres Database to manage accounts, which users an account has followed, the email addresses which I used for registration
- Add an UI to interact with my script, display accounts and statistics
- Introduce Docker to my Setup. For anyone not knowing what Docker is -> It basically allows you to pack up your code into a neat little package, that can run anywhere where docker runs. It allowed me to test and develop my application locally and move it to production in a few clicks. It also allowed me to just spawn multiple instances of my application (workers) to handle account creation and following. Basically it made scaling easier.
- Add Support for Profile Images, as the accounts looked a lot like bots^^
I did this using S3 Buckets and uploading scraped Instagram Images to those. I then added logic to upload a profile image at random to each account.
The UI is clean and allows me to spawn Workers to create Accounts and also allows me to spawn follow jobs by entering a username and the desired amount of followers. As said earlier, I am not much a designer - so I let Codex do this for me. I think it looks clean!

How to monetize
We now arrived in the present, I have a working product - now I have to monetize it. My current goal is to offer a Follow Service to SMM panels primarily focusing selling Followers for targeted Locations (e.g. Turkey, USA, etc). I have the service attached to my own SMM Panel, which I have until now only used to run my B2C Shops, but I hope to sell the Scare Followers through it.
I observed that many of the followers being offered in Panels are trash, as they don’t have profile pictures, random strings as names and are being deleted after days.
Having followers which don’t look like bots, should be a selling point in my opinion.
The next steps
There are quite a few ideas that I still have for my project, as I am not yet 100% happy with the followers. After around 1-2 weeks some profiles incur problems with following. I am aiming to reduce this rate by making the follow process more realistic and mimicing the requests of Scare more closely.
Also currently the profiles don’t provide any other value than being “dumb” followers.
After understanding so much about the Scare API I want to implement a full viewer bot with sophisticated controls like Live Chatters, etc.
But for now I will try to get my Followers into some Panels by sending Cold Emails / Telegram messages.


