SysKit logo
HTTP Status Code Reference
Look up any HTTP status code — search by code, reason phrase, or description

Informational

100Continue
The server has received the request headers and the client should proceed to send the request body.
101Switching Protocols
The server is switching protocols as requested by the client via the Upgrade header.
102Processing
The server has received and is processing the request, but no response is available yet.
103Early Hints
Used to return some response headers before the final HTTP message, allowing the client to preload resources.

Success

200OK
The request has succeeded. The meaning depends on the HTTP method used.
201Created
The request has been fulfilled and a new resource has been created.
202Accepted
The request has been accepted for processing, but the processing has not been completed.
203Non-Authoritative Information
The returned metadata is not exactly the same as available from the origin server, but collected from a local or third-party copy.
204No Content
The server has successfully fulfilled the request and there is no additional content to send in the response body.
205Reset Content
The server has fulfilled the request and the client should reset the document view.
206Partial Content
The server is delivering only part of the resource due to a range header sent by the client.
207Multi-Status
A Multi-Status response conveys information about multiple resources where multiple status codes might be appropriate.
208Already Reported
Used inside a DAV: propstat response element to avoid enumerating the internal members of multiple bindings to the same collection repeatedly.
226IM Used
The server has fulfilled a GET request for the resource, and the response is a representation of the result of one or more instance-manipulations applied to the current instance.

Redirection

300Multiple Choices
The request has more than one possible response. The user or user agent should choose one of them.
301Moved Permanently
The requested resource has been assigned a new permanent URI and any future references should use one of the returned URIs.
302Found
The requested resource resides temporarily under a different URI. The client should continue to use the original URI for future requests.
303See Other
The response to the request can be found under a different URI and should be retrieved using a GET method on that resource.
304Not Modified
The resource has not been modified since the version specified by the request headers. The client can use its cached version.
305Use Proxy
The requested resource must be accessed through the proxy given by the Location header. Deprecated due to security concerns.
307Temporary Redirect
The requested resource resides temporarily under a different URI. The request method should not be changed when reissuing the original request.
308Permanent Redirect
The requested resource has been permanently moved to another URI. The request method should not be changed when reissuing the original request.

Client Error

400Bad Request
The server cannot process the request due to something perceived to be a client error such as malformed syntax or invalid framing.
401Unauthorized
The request requires user authentication. The client must authenticate itself to get the requested response.
402Payment Required
Reserved for future use. Originally intended for digital payment schemes, but not widely used.
403Forbidden
The server understood the request but refuses to authorize it. Authentication will not help.
404Not Found
The server cannot find the requested resource. The URI may be incorrect or the resource may have been removed.
405Method Not Allowed
The request method is known by the server but is not supported by the target resource.
406Not Acceptable
The server cannot produce a response matching the list of acceptable values defined in the request headers.
407Proxy Authentication Required
The client must first authenticate itself with the proxy before the request can be fulfilled.
408Request Timeout
The server timed out waiting for the request. The client did not produce a request within the time the server was prepared to wait.
409Conflict
The request could not be completed due to a conflict with the current state of the target resource.
410Gone
The target resource is no longer available at the server and no forwarding address is known. This condition is expected to be permanent.
411Length Required
The server refuses to accept the request without a defined Content-Length header.
412Precondition Failed
One or more conditions given in the request header fields evaluated to false when tested on the server.
413Content Too Large
The server is refusing to process a request because the request payload is larger than the server is willing or able to process.
414URI Too Long
The server is refusing to service the request because the request-target is longer than the server is willing to interpret.
415Unsupported Media Type
The server is refusing to service the request because the payload is in a format not supported by this method on the target resource.
416Range Not Satisfiable
The range specified in the Range header of the request cannot be fulfilled. The range may be outside the size of the target resource's data.
417Expectation Failed
The expectation given in the request's Expect header could not be met by at least one of the inbound servers.
418I'm a Teapot
The server refuses to brew coffee because it is, permanently, a teapot. Defined by the Hyper Text Coffee Pot Control Protocol.
421Misdirected Request
The request was directed at a server that is not able to produce a response for the combination of scheme and authority included in the request URI.
422Unprocessable Content
The server understands the content type of the request but was unable to process the contained instructions.
423Locked
The source or destination resource of a method is locked.
424Failed Dependency
The method could not be performed on the resource because the requested action depended on another action that failed.
425Too Early
The server is unwilling to risk processing a request that might be replayed, to avoid potential replay attacks.
426Upgrade Required
The server refuses to perform the request using the current protocol but might be willing to do so after the client upgrades to a different protocol.
428Precondition Required
The origin server requires the request to be conditional to prevent lost update conflicts.
429Too Many Requests
The user has sent too many requests in a given amount of time (rate limiting).
431Request Header Fields Too Large
The server is unwilling to process the request because its header fields are too large. The request may be resubmitted after reducing the size of the request header fields.
451Unavailable For Legal Reasons
The server is denying access to the resource as a consequence of a legal demand. Named after the novel Fahrenheit 451.

Server Error

500Internal Server Error
The server encountered an unexpected condition that prevented it from fulfilling the request.
501Not Implemented
The server does not support the functionality required to fulfill the request.
502Bad Gateway
The server, while acting as a gateway or proxy, received an invalid response from an inbound server it accessed while attempting to fulfill the request.
503Service Unavailable
The server is currently unable to handle the request due to temporary overloading or maintenance of the server.
504Gateway Timeout
The server, while acting as a gateway or proxy, did not receive a timely response from an upstream server it needed to access to complete the request.
505HTTP Version Not Supported
The server does not support the HTTP protocol version that was used in the request message.
506Variant Also Negotiates
The server has an internal configuration error: the chosen variant resource is configured to engage in transparent content negotiation itself, creating a circular reference.
507Insufficient Storage
The server is unable to store the representation needed to complete the request.
508Loop Detected
The server detected an infinite loop while processing the request.
510Not Extended
Further extensions to the request are required for the server to fulfill it.
511Network Authentication Required
The client needs to authenticate to gain network access, typically used by captive portals.