Search, filter, and inspect definitions and descriptions of standard and proprietary HTTP client-server response headers.
1001xx Informational
Continue
The server has received the request headers and the client should proceed to send the request body.
1011xx Informational
Switching Protocols
The requester has asked the server to switch protocols and the server has agreed to do so.
2002xx Success
OK
Standard response for successful HTTP requests. The actual response will depend on the request method used.
2012xx Success
Created
The request has been fulfilled, resulting in the creation of a new resource.
2022xx Success
Accepted
The request has been accepted for processing, but the processing has not been completed.
2042xx Success
No Content
The server successfully processed the request, but is not returning any content.
2062xx Success
Partial Content
The server is delivering only part of the resource due to a range header sent by the client.
3013xx Redirection
Moved Permanently
This and all future requests should be directed to the given URI.
3023xx Redirection
Found
Tells the client to look at another (temporary) URL. The original method should still be used.
3043xx Redirection
Not Modified
Indicates that the resource has not been modified since the version specified by the request headers.
3073xx Redirection
Temporary Redirect
In this case, the request should be repeated with another URI; however, future requests should still use the original URI.
3083xx Redirection
Permanent Redirect
The request and all future requests should be repeated using another URI.
4004xx Client Error
Bad Request
The server cannot or will not process the request due to an apparent client error.
4014xx Client Error
Unauthorized
Similar to 403 Forbidden, but specifically for use when authentication is required and has failed or has not yet been provided.
4034xx Client Error
Forbidden
The request was a valid request, but the server is refusing to respond to it. The user might not have the necessary permissions.
4044xx Client Error
Not Found
The requested resource could not be found but may be available in the future.
4054xx Client Error
Method Not Allowed
A request method is not supported for the requested resource.
4094xx Client Error
Conflict
Indicates that the request could not be processed because of conflict in the current state of the resource.
4224xx Client Error
Unprocessable Entity
The request was well-formed but was unable to be followed due to semantic errors.
4294xx Client Error
Too Many Requests
The user has sent too many requests in a given amount of time (rate limiting).
5005xx Server Error
Internal Server Error
A generic error message, given when an unexpected condition was encountered and no more specific message is suitable.
5025xx Server Error
Bad Gateway
The server was acting as a gateway or proxy and received an invalid response from the upstream server.
5035xx Server Error
Service Unavailable
The server cannot handle the request (because it is overloaded or down for maintenance).
5045xx Server Error
Gateway Timeout
The server was acting as a gateway or proxy and did not receive a timely response from the upstream server.
Master client-server responses with the HTTP Status Codes Directory
Web architectures rely on status headers to communicate request outcomes securely. From standard success states like 200 OK and 201 Created, redirections like 301 and 304, to client limits (429 Rate Limited, 403 Forbidden) and server crashes (502 Bad Gateway), understanding response layers helps developers build high-reliability APIs.