httpet

Status codes for crab.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]
101 Switching Protocols

This code is sent in response to an Upgrade request header from the client and indicates the protocol the server is switching to.

[MDN]
200 OK

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

[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]
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]
418 I'm a teapot

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

[MDN]
422 Unprocessable Content

The request was well-formed but was unable to be followed due to semantic errors.

[MDN]
424 Failed Dependency

The request failed due to failure of a previous request.

[MDN]
429 Too Many Requests

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

[MDN]
451 Unavailable For Legal Reasons

The user agent requested a resource that cannot legally be provided, such as a web page censored by a government.

[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]
505 HTTP Version Not Supported

The HTTP version used in the request is not supported by the server.

[MDN]