GUI frontend for cURL for testing an API

ApiRestHttpTestingCurl

Api Problem Overview


I'm (manually) testing a RESTful API that makes full use of GET/POST/PUT/DELETE methods. Rather than using cURL on the command line to quickly test different input options, it would be handy if there were a windows GUI application to make this easier. Does anything like that exist?

Api Solutions


Solution 1 - Api

Use Poster with Firefox.

Solution 2 - Api

I know this post is a bit old, but Dev HTTP Client for Chrome is by far the best plugin I've found.

Along with providing a nice UI that pretty formats responses (like JSON and XML), it allows you to save any requests. IMHO, the best feature is the ability to set different "contexts" and set variables. For instance, you can have a "production" and "dev" context, each with a "host" variable. Then your request string could be http://${host}/foo.

Solution 3 - Api

Insomnia is a beautiful desktop application for Windows, Mac and Linux for debugging restful APIs (my personal favourite)

Postman is a Chrome extension for API testing and doing custom http requests. You can save requests for later use, setup different environments (staging, deployment) and collaborate and share requests with others on your team.

HttpRequester for Firefox is similar to Postman.

Solution 4 - Api

I like RESTclient. It doesn't format HTML, though (I assume Poster does), so if you get a 500 error you get to dredge through the return text yourself.

Solution 5 - Api

Also XHR POSTER with Chrome
I would say has a better UI then Poster.

Update
XHR has been giving me problems. DHC by Restlet for Chrome is pretty nice also.

Solution 6 - Api

Found a useful (free) web tool for this that now exists!

https://curlbuilder.com/

Solution 7 - Api

Fiddler is a very good tool. You can see history of requests, supports all HTTP verbs, completes the request with necessary headers (like Content-Length). The feature you are looking for is called "Request Builder".

Solution 8 - Api

In the interest of trying to keep this list up to date, here is an even better, newer Chrome extension: Advanced REST Client

Solution 9 - Api

Try gURL: http://code.google.com/p/gurl/ This is a simple HTTP-request generator, based on curl

Solution 10 - Api

Out of all the Firefox extensions I tried, HttpRequester is the best tool for me. It is very clear and doesn't lack a feature.

For Chrome, I would recommend Advanced REST client or Postman.

Solution 11 - Api

Paw for OS X is pretty nice. $29.99 as of this writing.

Solution 12 - Api

I think Hurl is a great candidate for that?

Attributions

All content for this solution is sourced from the original question on Stackoverflow.

The content on this page is licensed under the Attribution-ShareAlike 4.0 International (CC BY-SA 4.0) license.

Content TypeOriginal AuthorOriginal Content on Stackoverflow
QuestionAdamTheHuttView Question on Stackoverflow
Solution 1 - ApivladrView Answer on Stackoverflow
Solution 2 - ApiFotiosView Answer on Stackoverflow
Solution 3 - ApisqrenView Answer on Stackoverflow
Solution 4 - ApiTMNView Answer on Stackoverflow
Solution 5 - ApiDonny V.View Answer on Stackoverflow
Solution 6 - ApinibbexView Answer on Stackoverflow
Solution 7 - ApiTomekView Answer on Stackoverflow
Solution 8 - ApiFotiosView Answer on Stackoverflow
Solution 9 - ApiAleksView Answer on Stackoverflow
Solution 10 - ApiMathieu RodicView Answer on Stackoverflow
Solution 11 - ApijthomasView Answer on Stackoverflow
Solution 12 - ApibartView Answer on Stackoverflow