RESTful API testing with Hoppscotch.
REST
tab in the menu.
The REST platform has the following features:
GET
, POST
, PUT
etc. You can read more about HTTP methods in RESTful protocol.
You can also add dynamic behaviors to your requests by specifying Headers
, Request Body
, Authorization Headers
, Parameters
, and Pre-request scripts
.
Hoppscotch also provides the capability to run Tests
on the responses you receive.
HTTP Method | Usage |
---|---|
GET | Retrieve information about the REST API resource |
POST | Create a REST API resource |
PUT | Update a REST API resource |
DELETE | Delete a REST API resource or related component |
HEAD
, CONNECT
, OPTIONS
, TRACE
, PATCH
and other CUSTOM
methods can also be used.
Status Code | Description |
---|---|
200 | OK |
201 | Created |
204 | No Content |
400 | Bad Request |
401 | Unauthorized |
403 | Forbidden |
404 | Not Found |
405 | Method Not Allowed |
500 | Internal Server Error |
301
, 302
, 304
, 307
, 308
, and other 5XX
codes can also be used.