Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

What tools do you use to test your public REST API? [closed]

Looking for tools use to test REST API.

So far I'm only aware of SoapUI. I've tried SOAPUI but - at least in a mac - it's terrible.

Wondering what people are using to test their own APIs.

like image 477
dscape Avatar asked Dec 20 '10 03:12

dscape


2 Answers

If you're just testing your APIs manually, we've found RestClient 2.3 or the Poster add-on for Firefox to be pretty helpful. Both of these let you build requests that GET, PUT, POST, or DELETE. You can save these requests to rerun later.

For simple automated testing try the Linux (or Cygwin) 'curl' command in a shell script.

From something more industrial strength you can move up to Apache JMeter. JMeter is great for load testing.

31 October 2014: HTTPRequester is now a better choice for Firefox.

July 2015: Postman is a good choice for Chrome

like image 162
Jim Ferrans Avatar answered Sep 18 '22 13:09

Jim Ferrans


Postman in the chrome store is simple but powerful.

like image 36
daviddeath Avatar answered Sep 20 '22 13:09

daviddeath