developer

HTTP Status Code Lookup

Search and look up the meaning of every common HTTP status code.

100Continue

The server has received the request headers and the client should proceed to send the request body.

101Switching Protocols

The requester has asked the server to switch protocols.

200OK

The request succeeded.

201Created

The request succeeded and a new resource was created.

202Accepted

The request was accepted for processing, but processing isn't complete.

204No Content

The server successfully processed the request but is not returning any content.

301Moved Permanently

The resource has been permanently moved to a new URL.

302Found

The resource temporarily resides at a different URL.

304Not Modified

The resource has not been modified since the version specified by the request headers.

307Temporary Redirect

The request should be repeated with another URL, but future requests should still use the original URL.

308Permanent Redirect

The resource has been permanently moved, and future requests should use the new URL.

400Bad Request

The server cannot process the request due to a client error (malformed syntax, invalid data).

401Unauthorized

Authentication is required and has failed or has not been provided.

403Forbidden

The server understood the request but refuses to authorize it.

404Not Found

The server can't find the requested resource.

405Method Not Allowed

The request method is known but not supported by the target resource.

408Request Timeout

The server timed out waiting for the request.

409Conflict

The request conflicts with the current state of the server.

410Gone

The resource requested is no longer available and will not be available again.

418I'm a Teapot

A joke status defined in RFC 2324 — the server refuses to brew coffee because it is a teapot.

422Unprocessable Entity

The request was well-formed but contains semantic errors.

429Too Many Requests

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

500Internal Server Error

A generic error message when an unexpected condition was encountered.

501Not Implemented

The server doesn't support the functionality required to fulfill the request.

502Bad Gateway

The server, acting as a gateway, got an invalid response from the upstream server.

503Service Unavailable

The server is not ready to handle the request, often due to maintenance or overload.

504Gateway Timeout

The server, acting as a gateway, did not get a response in time.

How to use HTTP Status Code Lookup

  1. 1Type a status code or keyword.
  2. 2Browse matching codes and descriptions.

Related tools