88

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! 🙏

top 50 comments
sorted by: hot top controversial new old
[-] Oliver@programming.dev 2 points 1 day ago

Just moved to Apidog three month ago, better than Postman I think, and free too.

[-] YukioIkeda@programming.dev 1 points 1 day ago

Apidog is the best in terms of UI. I use it regularly and love it.

[-] omawarisan@lemmy.world 48 points 3 days ago
[-] kameecoding@lemmy.world 34 points 3 days ago

It's branded as Bruno the dog, because the dog is the enemy of the postman.

[-] dax@feddit.org 31 points 3 days ago* (last edited 3 days ago)

I am disappointed about their recent switch to a subscription model though. They quietly removed the single-time purchase "Golden Edition" and introduced multiple subscriptions. Not a good start, let's see if the enshittification continues like with all API testing tools.

[-] heavydust@sh.itjust.works 25 points 3 days ago

That’s hilarious. I remember Bruno being sold as the better tool because it had no subscription, and they switched to being evil in less than a year.

[-] tias@discuss.tchncs.de 9 points 3 days ago

I wonder why is this kind of product so liable to enshittification. It's just a simple Electron GUI to edit and submit requests to a REST API. Much more complex software has worked fine for years as FOSS.

[-] thirdBreakfast@lemmy.world 9 points 3 days ago

Same - As an Insomnia refugee, I thought "Oh no, not this again" and felt foolish for evangelising it.

[-] akai_android@programming.dev 4 points 3 days ago

wait, really?? bruno is chill and i bought the lifetime. it really was billed as an alternative to that model

[-] CreatingMachines@fedia.io 3 points 3 days ago

I thought we didn't talk about Bruno.

load more comments (1 replies)
[-] expr@programming.dev 29 points 3 days ago* (last edited 3 days ago)

Curl. Everything you described is not hard to do via scripts. I use it every day for all of my API testing needs. You're also not limited to the features Postman provides.

[-] Strykker@programming.dev 9 points 3 days ago

This is like telling someone who needs a new table saw that they can use a handsaw.

Like sure it works great, but it's going to be a long process getting things done compared to something like postman.

[-] runeko@programming.dev 1 points 2 days ago

If a person needs to process an entire kitchen worth of lumber, then yes, tablesaw. If, however, a person needs to build one simple box and also learn how the wood fits together and practice their skills, then handsaw.

[-] expr@programming.dev 2 points 3 days ago

It does not take long to use curl, not sure what you're talking about. There's not particularly special about what Postman does.

[-] tatterdemalion@programming.dev 3 points 3 days ago

xh is a nice modern alternative.

[-] 0x0@programming.dev 4 points 3 days ago

What's not modern about curl?

load more comments (3 replies)
load more comments (2 replies)
[-] sirdorius@programming.dev 30 points 3 days ago

If you use VSCode, Rest client is so much better than Postman. Requests are simple text files that area easy to edit, version and share with others

[-] dallen@programming.dev 6 points 3 days ago

Also my go-to, I prefer everything in version control instead of someone else’s cloud.

IIRC, Pycharm can also inject the same .rest files.

[-] 0x0@programming.dev 3 points 3 days ago

Wow... it's pretty awesome! Thanks.

[-] GissaMittJobb@lemmy.ml 3 points 3 days ago

I use this as well. In fact, I have an instance of VSCode running only for access to the extension library - I do most of my editing in Android Studio, but manage Git interactions and things like Rest Client in VSCode.

[-] snowe@programming.dev 1 points 1 day ago

android studio is built on intellij, and as a result can do the exact same things intellij does, which includes the .http files (which I think are the same as .rest files). So you can get the exact same features in android studio as you do in vscode. I think.

[-] rimu@piefed.social 22 points 3 days ago

All I want is to make API requests with whatever headers but no fucking Electron so the app loads before the heat death of the universe.. Please, please

[-] dallen@programming.dev 17 points 3 days ago
[-] Ephera@lemmy.ml 13 points 3 days ago

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...

[-] expr@programming.dev 15 points 3 days ago

You can easily write a script to make curl requests from a CSV.

[-] MajorHavoc@programming.dev 5 points 3 days ago* (last edited 3 days ago)

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.

Yeah. Pretty much. As one of the folks who could code a new solution in go in a weekend, I have not - because curl plus some trivial one-liners in Bash, Python or PowerShell is already a 90% solution to what I need.

load more comments (2 replies)
[-] Aurenkin@sh.itjust.works 14 points 3 days ago

It's been a while but insomnia used to be my go to

[-] thirdBreakfast@lemmy.world 25 points 3 days ago

It got enshittified. I went to use it one day and it wouldn't work without creating an account.

[-] Aurenkin@sh.itjust.works 5 points 3 days ago

Aw man that really sucks. I moved to it back in the day after Postman got enshittified. The cycle continues I suppose

[-] banghida@lemm.ee 3 points 3 days ago

Ah shit. Time to make something from scratch then.

[-] Pyro@programming.dev 2 points 3 days ago* (last edited 3 days ago)

I use one of its forks called Insomnium which was forked right before compulsory login was added.

load more comments (1 replies)
[-] villainy@lemmy.world 12 points 3 days ago

I use an organized git repo full of curl shell scripts 🤷

[-] CJJackson@programming.dev 1 points 2 days ago

I’ve been working on my own version of Rest API test client, it relies on self executing TOML files, that can be save into a git repository, it currently has unlimited API requests, will be under a 0BSD license.

It currently does not do batch script or data import from spreadsheet or csv, but I can work that feature in, that should be easy to do in Python.

It currently supports arguments and pipelining http responses into a http request. I suppose I could use the pipelining system to do the data import!

It relies on adapters, those will take care of authentication like oAuth and provide the header to merge into the request.

It will be broken down into edition to keep it easy to maintain, current working on JSON edition, but will do XML edition sometime in the future. I really want to stay close to the Unix philosophy!

I did it out of frustration of Postman and other Electron based counterparts. But also I’m doing it because it fun 😁

[-] qaz@lemmy.world 8 points 3 days ago* (last edited 3 days ago)
[-] CosmicTurtle0@lemmy.dbzer0.com 7 points 3 days ago* (last edited 3 days ago)

This is my official recommendation. It aims to be a drop-in replacement of Postman. They don't have pre/post-execution scripts at the collection level (only at the request level) and there are a few other features missing but they are making pretty good progress.

I say official because I was on my company's committee to switch to a new API tool. Though I personally felt that we should have just paid for Postman. But our business risk team didn't like the terms that Postman had.

[-] MagicShel@lemmy.zip 2 points 3 days ago

Yeah we moved from Postman to Hoppscotch and I think it's pretty decent.

[-] MajorHavoc@programming.dev 3 points 3 days ago* (last edited 2 days ago)

Hopscotch is the one I've been recommending, but it has a "use us before we also enshitify" vibe, so I'm going to check out Insomnium, the open fork of Insomnia.

[-] filister@lemmy.world 6 points 3 days ago

https://httpie.io/ check this one, they have both command line and also desktop application, but not sure if it covers all your requirements.

[-] brian@programming.dev 2 points 2 days ago

I can use insomnium for almost everything, but it's not as complete as postman. randomly I'll run into some problem that makes me go back.

for instance, there's no way to just enter binary data on a readable format to send over websocket. with postman there's an obvious dropdown to send hex encoded data as a binary message.

[-] foster@lemmy.fosterhangdaan.com 5 points 3 days ago

Every app in this space tends to get enshittified, so I just use shell scripts to do API calls nowadays. I used Insomnia and Postman in the past.

[-] modality@lemmy.myserv.one 5 points 3 days ago

I’m a fan of HTTPie

[-] agilob@programming.dev 3 points 3 days ago

I like super simple things that I can use from a single window of my editor or IDE. Most frequently I use vscodium, I use this https://marketplace.visualstudio.com/items?itemName=unjinjang.rest-api-client

[-] blarth@thelemmy.club 2 points 3 days ago

Thunder client for VS Code.

load more comments
view more: next ›
this post was submitted on 31 Dec 2024
88 points (100.0% liked)

Programming

17717 readers
194 users here now

Welcome to the main community in programming.dev! Feel free to post anything relating to programming here!

Cross posting is strongly encouraged in the instance. If you feel your post or another person's post makes sense in another community cross post into it.

Hope you enjoy the instance!

Rules

Rules

  • Follow the programming.dev instance rules
  • Keep content related to programming in some way
  • If you're posting long videos try to add in some form of tldr for those who don't want to watch videos

Wormhole

Follow the wormhole through a path of communities !webdev@programming.dev



founded 2 years ago
MODERATORS