DevTab

HTTP Status Codes

Never leaves your browser

Searchable, color-coded reference of every HTTP status code and what it means.

100Continue

The server has received the request headers and the client should proceed to send the 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 has been accepted for processing, but processing isn't complete.

204No Content

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

206Partial Content

The server is delivering only part of the resource due to a range header.

301Moved Permanently

The resource has been permanently moved to a new URL.

302Found

The resource resides temporarily under a different URL.

304Not Modified

The resource hasn't changed since the last request — use the cached version.

307Temporary Redirect

Like 302, but the request method must not change.

308Permanent Redirect

Like 301, but the request method must not change.

400Bad Request

The server cannot process the request due to a client error.

401Unauthorized

Authentication is required and has failed or not been provided.

403Forbidden

The server understood the request but refuses to authorize it.

404Not Found

The requested resource could not be found.

405Method Not Allowed

The request method is not supported for this resource.

408Request Timeout

The server timed out waiting for the request.

409Conflict

The request conflicts with the current state of the resource.

410Gone

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

413Payload Too Large

The request entity is larger than limits the server is willing to process.

415Unsupported Media Type

The media format of the requested data is not supported.

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.

500Internal Server Error

The server encountered an unexpected condition.

501Not Implemented

The server does not support the functionality required.

502Bad Gateway

The server received an invalid response from an upstream server.

503Service Unavailable

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

504Gateway Timeout

The upstream server failed to send a request in time.