I would like to hear if any of you are using different app for API testing than Postman.

I’m not telling that Postman is bad, but maybe there’s all that I should check out. Recently I tried RapidApi and even tho the app is kinda cool I missed few options and went back to Postman for now.

6 points

I mostly use the rest client extension for vscode

permalink
report
reply
3 points

I tried to use the HTTP Client built into Jetbrains IDE, but I just can’t get hang of it

permalink
report
parent
reply
57 points

I am a fan of Insomnia. As far as I can tell it has most of the features I used in postman without all the paid upgrade nags

permalink
report
reply
4 points

never heard about it. gonna give it a try for sure. thanks for the suggestion!

permalink
report
parent
reply
12 points

Seconding Insomnia. Sleeker interface imo, only thing it’s lacking in feature parity afaik is the cookie sniffer, but you can grab what you need in postman or js console and then plug it into insomnia np.

Also, cURL :]

permalink
report
parent
reply
2 points

Also a websocket test mode would be nice. It’s something I do miss from Postman

permalink
report
parent
reply
3 points

ducaale/xh is excellent for anybody that likes to use HTTP from a CLI.

permalink
report
parent
reply
1 point

Yep, these command line tools seems really cool!

When I was using GUI API Testing tools, I prefer using APIDog, their UI is much easier to use and I can easily migrate my Postman scripts.

permalink
report
parent
reply
10 points

Insomnia is really good, never looked back at postman since i use Insomnia!

permalink
report
parent
reply
3 points

The one thing I find difficult in Insomnia is making the auth common across a group of requests. I end up duplicating existing requests which doesn’t help if I need to update the process at all. Is there a way to use common auth routines yet?

permalink
report
parent
reply
14 points

I like Insomnia myself

permalink
report
reply
22 points

Insomnia is pretty cool and open-source

permalink
report
reply
7 points

I usually generate an API client in C#, and just use that. For example, and entire integration CRUD test for a user would just be something like:

var user = TestClient.CreateUser(1234, "Bob");
user.Id.ShouldBe(1234);
user.Name.ShouldBe("Bob");

var userThroughGet = TestClient.GetUser(1234);
userThroughGet.ShouldNotBeNull();

TestClient.EditUser(1234, "John");
userThroughGet = TestClient.GetUser(1234);
userThroughGet.Name.ShouldBe("John");

TestClient.DeleteUser(1234);
userThroughGet = TestClient.GetUser(1234);
userThroughGet.ShouldBeNull();

Trying to set up those kinda scenarios quickly with Postman was getting pretty tedious

permalink
report
reply

Programming

!programming@programming.dev

Create post

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



Community stats

  • 3.1K

    Monthly active users

  • 1.8K

    Posts

  • 30K

    Comments