back
▲ 1 points

Ask HN: How do you manage API collections using cURL?

by 0x54MUR41·2y ago·6 comments·view on hn ↗
Context: I am currently using Insomnia Rest for API manual testing. After they announced a change in the newer version (requiring an account), I am looking for some alternatives. Some people recommend Restfox, Bruno, and etc. My requirements are:

* No account required

* No analytics or telemetry

* Able to import/export the collection

* Available across popular operating systems, Linux, macOS, and Windows.

I found Restfox and Bruno had analytics. I was thinking it was only cURL which met above requirements. You can manage the API collections easily as well as the environment using Insomnia, Restfox, and Bruno. As for cURL, I think it requires much effort managing that. I wanted to get some insights on how you manage API collections using cURL.

6 comments
It's probably going to be much easier to just fork Bruno and remove the one file with telemetry in it than to torture yourself with the alternatives.
Good idea. Thanks!
https://github.com/ArchGPT/insomnium

(IDK if it meets all your reqs, but check it out)

I didn't know if there was a fork of Insomnia. Will definitely check this out. Thanks!
we have 3 layers at my job

1. a custom bash script that wraps curl with some shortcuts. good for quick simple experimentation

2. postman collections. for reference and deeper investigation.

3. playwright api tests. for progamattically checking our backend apis in our ci/cd

Wow. These are giving me some insights. Thank you for sharing.