httpet

Status codes for goat.httpet.org

Available images

100 Continue

This interim response indicates that the client should continue the request or ignore the response if the request is already finished.

[MDN]
200 OK

The request succeeded. The result and meaning of "success" depends on the HTTP method:

[MDN]
204 No Content

There is no content to send for this request, but the headers are useful. The user agent may update its cached headers for this resource with the new ones.

[MDN]
301 Moved Permanently

The URL of the requested resource has been changed permanently. The new URL is given in the response.

[MDN]
302 Found

This response code means that the URI of requested resource has been changed temporarily. Further changes in the URI might be made in the future, so the same URI should be used by the client in future requests.

[MDN]
400 Bad Request

The server cannot or will not process the request due to something that is perceived to be a client error (e.g., malformed request syntax, invalid request message framing, or deceptive request routing).

[MDN]
401 Unauthorized

Although the HTTP standard specifies "unauthorized", semantically this response means "unauthenticated". That is, the client must authenticate itself to get the requested response.

[MDN]
403 Forbidden

The client does not have access rights to the content; that is, it is unauthorized, so the server is refusing to give the requested resource. Unlike 401 Unauthorized, the client's identity is known to the server.

[MDN]
404 Not Found

The server cannot find the requested resource. In the browser, this means the URL is not recognized. In an API, this can also mean that the endpoint is valid but the resource itself does not exist. Servers may also send this response instead of 403 Forbidden to hide the existence of a resource from an unauthorized client. This response code is probably the most well known due to its frequent occurrence on the web.

[MDN]
414 URI Too Long

The URI requested by the client is longer than the server is willing to interpret.

[MDN]
418 I'm a teapot

The server refuses the attempt to brew coffee with a teapot.

[MDN]
429 Too Many Requests

The user has sent too many requests in a given amount of time (rate limiting).

[MDN]
500 Internal Server Error

The server has encountered a situation it does not know how to handle. This error is generic, indicating that the server cannot find a more appropriate 5XX status code to respond with.

[MDN]
503 Service Unavailable

The server is not ready to handle the request. Common causes are a server that is down for maintenance or that is overloaded. Note that together with this response, a user-friendly page explaining the problem should be sent. This response should be used for temporary conditions and the Retry-After HTTP header should, if possible, contain the estimated time before the recovery of the service. The webmaster must also take care about the caching-related headers that are sent along with this response, as these temporary condition responses should usually not be cached.

[MDN]
504 Gateway Timeout

This error response is given when the server is acting as a gateway and cannot get a response in time.

[MDN]