Hey!
I’m currently hitting the limits with Postman’s free tier and need your recommendations for alternatives. My company isn’t planning to upgrade to the paid version, so I’m specifically looking for:
Must-have features:
- Unlimited API requests
- Collection runner or similar batch testing capability
- Data import from spreadsheets for test automation
- The collection runner feature is crucial for my workflow: I heavily rely on being able to import Excel data to generate and map multiple API calls without manual setup.
Has anyone switched from Postman to something else that offers these capabilities? What’s your experience been like?
Thanks in advance for any suggestions! 🙏
I’m genuinely wondering, if this is a situation where the open-source community just uses curl and that’s why there’s only corporate gunk for those who want more features. For example, curl obviously won’t support Excel import, but folks in the open-source community are also very unlikely to want that…
You can easily write a script to make curl requests from a CSV.
Depending on exactly what you mean by importing from excel, there are libraries for Perl/Python/your scripting language of choice that will simplify that so it becomes a matter of a fairly small amount of code to build a test harness that does exactly what you want.
Well, OP mentioned an Excel import, so I’m not 100% sure what that means either. 🙃
But yeah, that’s part of why I’m wondering. I hardly know anything about Postman, so I’m probably underestimating how complex this would be, but it still feels like at least the core feature-set could easily be covered by an open-source tool, if anyone in the open-source community had that itch to scratch.
Maybe it’s also just solving a problem that only companies have? The webpage mentions some things about centrally managing API definitions. Do not ask me why the API definitions are not in a repo. But I guess, if you join a company that works like that, you’re not going lean up against that…
After reading the comments here, alongside my own experience of using postman for years - and being too lazy to use curl.
I think the only demand for postman and its ilk is for team collaboration, social sharing and the lazy. All three cases virtually demand evolution to squeeze every cent out of the willing as possible
Yeah. Pretty much. As one of the folks who could code a new solution in
go
in a weekend, I have not - becausecurl
plus some trivial one-liners in Bash, Python or PowerShell is already a 90% solution to what I need.