HTTP Status Codes

1xx Informational

100 Continue

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

101 Switching Protocols

The requester has asked the server to switch protocols and the server has agreed to do so.

102 Processing

The server has received and is processing the request, but no response is available yet.

2xx Success

200 OK

The request has succeeded. The meaning of success varies depending on the HTTP method.

201 Created

The request has been fulfilled and resulted in a new resource being created.

202 Accepted

The request has been accepted for processing, but the processing has not been completed.

204 No Content

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

206 Partial Content

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

3xx Redirection

301 Moved Permanently

The requested resource has been assigned a new permanent URI and future references should use that URI.

302 Found

The requested resource resides temporarily under a different URI.

304 Not Modified

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

307 Temporary Redirect

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

308 Permanent Redirect

The request and all future requests should be repeated using another URI permanently.

4xx Client Error

400 Bad Request

The server cannot or will not process the request due to an apparent client error.

401 Unauthorized

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

403 Forbidden

The server understood the request but refuses to authorize it.

404 Not Found

The requested resource could not be found on the server.

405 Method Not Allowed

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

408 Request Timeout

The server timed out waiting for the request from the client.

409 Conflict

The request could not be completed due to a conflict with the current state of the resource.

410 Gone

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

413 Payload Too Large

The request is larger than the server is willing or able to process.

415 Unsupported Media Type

The request entity has a media type which the server or resource does not support.

422 Unprocessable Entity

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

429 Too Many Requests

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

5xx Server Error

500 Internal Server Error

The server encountered an unexpected condition that prevented it from fulfilling the request.

501 Not Implemented

The server does not support the functionality required to fulfill the request.

502 Bad Gateway

The server, while acting as a gateway or proxy, received an invalid response from the upstream server.

503 Service Unavailable

The server is currently unable to handle the request due to temporary overloading or maintenance.

504 Gateway Timeout

The server, while acting as a gateway or proxy, did not receive a timely response from the upstream server.

505 HTTP Version Not Supported

The server does not support the HTTP protocol version used in the request.