Look up the meaning of any HTTP status code.
Looked up locally in your browser.
What does an HTTP status code mean?
HTTP status codes are grouped by their first digit: 1xx informational, 2xx success, 3xx redirection, 4xx client error and 5xx server error. The first digit sets the class, so a 4xx means the client's request had a problem and 5xx means the server failed. For example, 404 is "Not Found", a client error.
Understanding your result
Every HTTP response includes a status code that tells the client how the request was handled. The first digit sets the class — for example, anything in the 4xx range means the client's request had a problem, while 5xx means the server failed. Knowing the category alone often points you to the cause.
Formula and method
Status codes are grouped by their first digit: 1xx informational, 2xx success, 3xx redirection, 4xx client error and 5xx server error.
Worked example
404 is "Not Found", a client error meaning the server cannot find the requested resource.
How to use this tool
- Enter a status code such as 404.
- Read its name, category and meaning.
Common mistakes to avoid
- Confusing 401 (not authenticated) with 403 (authenticated but forbidden).
- Returning 200 for an error instead of an appropriate 4xx or 5xx.
- Treating a 3xx redirect as an error.
About the HTTP Status Code Lookup
The HTTP Status Code Lookup explains what any standard HTTP response code means — its name, category and a plain-English description — from informational 1xx codes to server-error 5xx codes.
Who should use this tool
Web developers, API users, QA engineers and anyone debugging a request.
Benefits
- Name, category and meaning for each code.
- Covers common and less common standard codes.
- Grouped by class so you understand the pattern.
- Private — looked up entirely in your browser.
Practical use cases
- Decoding an unexpected response while debugging.
- Checking the right code to return from an API.
- Learning what each status class means.
Explore all Developer Tools tools
Frequently asked questions
What does 404 mean?
404 Not Found means the server could not find the requested resource at that URL.
What is the difference between 401 and 403?
401 Unauthorized means you are not authenticated; 403 Forbidden means you are authenticated but not allowed to access the resource.
What do the status code classes mean?
1xx is informational, 2xx success, 3xx redirection, 4xx client errors and 5xx server errors.