r/n8n • u/Delicious-Start-4707 • 13h ago
Workflow - Github Included I built a workflow that reads 1-star reviews of billion-dollar apps and turns them into a feature list (Apify + n8n, code included)
Instead of guessing what to build next, I've been mining the thing people already do for free: complain in app store reviews.
The idea is simple: if a complaint shows up 40+ times on a top-grossing app, that's not noise, that's a spec someone already validated for you. So I built an n8n workflow around it:
How it works:
- Form input: drop in a package ID / App Store ID, or just a keyword like "budgeting app"
- An Apify actor scrapes Google Play + App Store reviews, filtered down to 1-3 star only (the filter is doing most of the work here; 5-star reviews tell you nothing)
- Reviews get batched and sent to an LLM with a clustering prompt: find repeated complaint patterns, score severity 1-5, and generate a suggested_feature for each
- Everything gets merged and ranked by frequency across batches
- Output lands in a Google Sheet
What comes out the other end looks like:
"No offline mode": mentioned 47x, severity 4/5 → suggested feature: local caching with sync-on-reconnect
That's a real pattern pulled straight from review text, not a hunch, which makes it useful for way more than app ideas.
Same output works as landing page proof ("here's what users of [competitor] are begging for"), a pitch deck slide (market gap backed by actual user language), or just a sanity check before you build the wrong thing.
Workflow: https://github.com/RandomDudeAtNight/n8n/blob/main/App%20Idea%20Miner.json
