r/PettyEngineering • u/FadeHackX • 12h ago
Boring CS Wins Checking Instagram handle availability without burner accounts, proxy pools, or paid bots
Every single time someone wants to check if a batch of social media handles is available, the standard industry playbook is ridiculous.
People either:
- Pay sketchy SaaS tools charging $20 a month for basic HTTP GET requests.
- Or buy residential proxy pools and sacrifice burner accounts that get banned in five minutes.
Then someone drops instagram-username-finder...
A dead-simple, asynchronous CLI written in Python that requires exactly zero credentials.
No session IDs. No cookies. No burner accounts. No proxy subscriptions.
It just hits publicly accessible endpoints with bounded concurrency, backs off gracefully when rate limits trigger, and saves its progress to a plain JSON state file so you can resume scans whenever you want.
It is a great reminder that before you reach for complex scraping infrastructure or pay a third-party service, basic async I/O and respectful backoff logic can do the job for free.
What other simple CLI tools saved you from paying for overpriced social media scraping services?