Ask HN: How do you split your SaaS features into plans? I'm doing a side project which purpose is to experiment if I can build a SaaS product and maybe earn some dollars. The app is a web-based REST api monitoring/tester tool, and I've been struggling with splitting features into packages that actually makes sense. The core features are like having API calls defined with parameters and assertions as cases, and then you can run them in every 1/5/15/60 minutes and get a report in email/slack if something went wrong. I have no experience on what works in real life so I'd appreciate any feedback from similar people who has done A/B testing or has any experience regarding this.
My current idea is: - Basic: max 1 user / max 5 case / 60 mins frequency - Startup: max 5 users / max 100 case/ 5 minutes frequency - Enterprise: unlimited users / unlimited case / 1 minutes frequency And the main selling point for the most expensive plan would be an ability to run collections through an API so that it can be wired into CI build. Any thougths? Thanks! |