HTTP Status Code Lookup
Type any HTTP status code from 100 to 511 and read its official reason phrase, across the informational, success, redirect, client and server error ranges.
Significado
—
HTTP status names without digging through RFCs
A 502 shows up in a log, a 418 in an API response, a 307 in a redirect chain, and all you want is to know what the number means before getting on with debugging. Type the code and get its official name instantly: 404 is Not Found, 429 is Too Many Requests, 503 is Service Unavailable. The table covers the most used codes across classes 1xx to 5xx, including the ones that tend to show up in proxy and API logs.
The first digit tells half the story: 1xx is informational, 2xx success, 3xx redirection, 4xx a client-side error and 5xx a server-side one. The traps live in the look-alike pairs: 401 means no valid credentials while 403 means authenticated but not allowed; 502 is a gateway getting an invalid response from the backend, while 504 is the backend not answering in time; and 308 is the version of 301 that preserves the POST method across the redirect.
What you get back is the official reason phrase, enough to point the investigation in the right direction; the full semantics (required headers, caching behavior) live in RFC 9110 and on MDN. Codes outside the list show as unknown, which includes non-standard ones like the 499 Nginx logs when a client gives up before the response arrives. The lookup runs against a local table right in your browser, with no external call.
Frequently asked questions
What is the difference between 401 and 403?
What does 502 Bad Gateway mean?
Is 418 a real status code?
Related Tools
HTTP Status Codes
Look up all HTTP status codes with names and descriptions. Search by code or keyword. Quick reference for developers.
HTTP Accept Header Content Negotiation Matcher
Paste a client Accept header and the comma-separated media types a server offers to see which one wins and at what q value. Exact types and */* only.
Content-Disposition Filename Parser
Pulls the download filename out of a Content-Disposition header, preferring the percent-encoded filename* form from RFC 5987 and decoding it for you.
VS Code Keybinding Generator
Generate entries for VS Code keybindings.json with key, command and when-context. Custom shortcut in seconds.
Accept-Encoding Header Parser
Splits an HTTP request header such as gzip, deflate, br;q=1.0 into codings ranked by q value, assuming q=1 whenever the parameter is missing.
OIDC Standard Claim Lookup
Type a claim name such as sub, email_verified, azp or amr and see what OpenID Connect says it carries; names outside the spec are flagged as custom.