HTTP Status Lookup

Search HTTP status codes and meanings

Your data never leaves your browser.
CodeStatusClassDescription
100Continue1xx - InformationalThe server has received the request headers and the client should proceed to send the request body.
101Switching Protocols1xx - InformationalThe requester has asked the server to switch protocols.
102Processing1xx - InformationalThe server has received and is processing the request, but no response is available yet.
103Early Hints1xx - InformationalUsed to return some response headers before the final HTTP message.
200OK2xx - SuccessStandard response for successful HTTP requests.
201Created2xx - SuccessThe request has been fulfilled, resulting in the creation of a new resource.
202Accepted2xx - SuccessThe request has been accepted for processing, but the processing has not been completed.
203Non-Authoritative Information2xx - SuccessThe server is a transforming proxy that received a 200 from the origin.
204No Content2xx - SuccessThe server successfully processed the request and is not returning any content.
205Reset Content2xx - SuccessThe server successfully processed the request, asks that the requester reset its document view.
206Partial Content2xx - SuccessThe server is delivering only part of the resource due to a range header sent by the client.
301Moved Permanently3xx - RedirectionThis and all future requests should be directed to the given URI.
302Found3xx - RedirectionTells the client to look at another URL.
303See Other3xx - RedirectionThe response to the request can be found under another URI using the GET method.
304Not Modified3xx - RedirectionIndicates that the resource has not been modified since the last request.
307Temporary Redirect3xx - RedirectionThe request should be repeated with another URI; the method should not be changed.
308Permanent Redirect3xx - RedirectionThe request and all future requests should be repeated using another URI.
400Bad Request4xx - Client ErrorThe server cannot or will not process the request due to an apparent client error.
401Unauthorized4xx - Client ErrorAuthentication is required and has failed or has not yet been provided.
402Payment Required4xx - Client ErrorReserved for future use. The original intention was that this code might be used for digital payment systems.
403Forbidden4xx - Client ErrorThe request contained valid data and was understood by the server, but the server is refusing action.
404Not Found4xx - Client ErrorThe requested resource could not be found but may be available in the future.
405Method Not Allowed4xx - Client ErrorA request method is not supported for the requested resource.
406Not Acceptable4xx - Client ErrorThe requested resource is capable of generating only content not acceptable according to the Accept headers.
408Request Timeout4xx - Client ErrorThe server timed out waiting for the request.
409Conflict4xx - Client ErrorIndicates that the request could not be processed because of conflict in the current state of the resource.
410Gone4xx - Client ErrorIndicates that the resource requested is no longer available and will not be available again.
411Length Required4xx - Client ErrorThe request did not specify the length of its content, which is required by the requested resource.
413Payload Too Large4xx - Client ErrorThe request is larger than the server is willing or able to process.
414URI Too Long4xx - Client ErrorThe URI provided was too long for the server to process.
415Unsupported Media Type4xx - Client ErrorThe request entity has a media type which the server or resource does not support.
416Range Not Satisfiable4xx - Client ErrorThe client has asked for a portion of the file, but the server cannot supply that portion.
418I'm a teapot4xx - Client ErrorThe server refuses the attempt to brew coffee with a teapot.
422Unprocessable Content4xx - Client ErrorThe request was well-formed but was unable to be followed due to semantic errors.
423Locked4xx - Client ErrorThe resource that is being accessed is locked.
429Too Many Requests4xx - Client ErrorThe user has sent too many requests in a given amount of time.
451Unavailable For Legal Reasons4xx - Client ErrorA server operator has received a legal demand to deny access to a resource.
500Internal Server Error5xx - Server ErrorA generic error message, given when an unexpected condition was encountered.
501Not Implemented5xx - Server ErrorThe server either does not recognize the request method, or it lacks the ability to fulfill the request.
502Bad Gateway5xx - Server ErrorThe server was acting as a gateway or proxy and received an invalid response from the upstream server.
503Service Unavailable5xx - Server ErrorThe server cannot handle the request (overloaded or down for maintenance).
504Gateway Timeout5xx - Server ErrorThe server was acting as a gateway or proxy and did not receive a timely response from the upstream server.
505HTTP Version Not Supported5xx - Server ErrorThe server does not support the HTTP version used in the request.