HTTP Status Codes
Lookup and explore standard HTTP response status codes.
100Continue
1xx Informational
The server has received the request headers and the client should proceed to send the request body.
101Switching Protocols
1xx Informational
The requester has asked the server to switch protocols.
102Processing
1xx Informational
The server has received and is processing the request, but no response is available yet.
103Early Hints
1xx Informational
Used to return some response headers before final HTTP message.
200OK
2xx Success
The request has succeeded.
201Created
2xx Success
The request has been fulfilled, resulting in the creation of a new resource.
202Accepted
2xx Success
The request has been accepted for processing, but the processing has not been completed.
203Non-Authoritative Information
2xx Success
The server is a transforming proxy that received a 200 OK from its origin, but is returning a modified version of the origin's response.
204No Content
2xx Success
The server successfully processed the request and is not returning any content.
205Reset Content
2xx Success
The server successfully processed the request, but is not returning any content. The client should reset the document view.
206Partial Content
2xx Success
The server is delivering only part of the resource due to a range header sent by the client.
300Multiple Choices
3xx Redirection
Indicates multiple options for the resource from which the client may choose.
301Moved Permanently
3xx Redirection
The requested page has moved to a new URL.
302Found
3xx Redirection
The requested page has moved temporarily to a new URL.
303See Other
3xx Redirection
The response to the request can be found under another URI using the GET method.
304Not Modified
3xx Redirection
Indicates that the resource has not been modified since the version specified by the request headers.
307Temporary Redirect
3xx Redirection
The requested resource resides temporarily under a different URI. The request method must not be changed.
308Permanent Redirect
3xx Redirection
The requested resource resides permanently under a different URI. The request method must not be changed.
400Bad Request
4xx Client Error
The server cannot or will not process the request due to an apparent client error.
401Unauthorized
4xx Client Error
Authentication is required and has failed or has not yet been provided.
402Payment Required
4xx Client Error
Reserved for future use.
403Forbidden
4xx Client Error
The request was valid, but the server is refusing action. The user might not have the necessary permissions.
404Not Found
4xx Client Error
The requested resource could not be found but may be available in the future.
405Method Not Allowed
4xx Client Error
A request method is not supported for the requested resource.
406Not Acceptable
4xx Client Error
The requested resource is capable of generating only content not acceptable according to the Accept headers sent in the request.
407Proxy Authentication Required
4xx Client Error
The client must first authenticate itself with the proxy.
408Request Timeout
4xx Client Error
The server timed out waiting for the request.
409Conflict
4xx Client Error
Indicates that the request could not be processed because of conflict in the current state of the resource.
410Gone
4xx Client Error
Indicates that the resource requested is no longer available and will not be available again.
411Length Required
4xx Client Error
The request did not specify the length of its content, which is required by the requested resource.
412Precondition Failed
4xx Client Error
The server does not meet one of the preconditions that the requester put on the request.
413Payload Too Large
4xx Client Error
The request is larger than the server is willing or able to process.
414URI Too Long
4xx Client Error
The URI provided was too long for the server to process.
415Unsupported Media Type
4xx Client Error
The request entity has a media type which the server or resource does not support.
418I'm a teapot
4xx Client Error
The server refuses the attempt to brew coffee with a teapot.
422Unprocessable Entity
4xx Client Error
The request was well-formed but was unable to be followed due to semantic errors.
429Too Many Requests
4xx Client Error
The user has sent too many requests in a given amount of time ("rate limiting").
500Internal Server Error
5xx Server Error
A generic error message, given when an unexpected condition was encountered.
501Not Implemented
5xx Server Error
The server either does not recognize the request method, or it lacks the ability to fulfil the request.
502Bad Gateway
5xx Server Error
The server was acting as a gateway or proxy and received an invalid response from the upstream server.
503Service Unavailable
5xx Server Error
The server cannot handle the request (because it is overloaded or down for maintenance).
504Gateway Timeout
5xx Server Error
The server was acting as a gateway or proxy and did not receive a timely response from the upstream server.
505HTTP Version Not Supported
5xx Server Error
The server does not support the HTTP protocol version used in the request.