BRYME TECH
SEPTEMBER 2026 · THE TOOL DESKPractical technology. No theatre.
THE BRYME

BRYME Tools · runs entirely in your browser

HTTP status code lookup

The HTTP status codes that actually matter, grouped by class, with plain-language meanings. Type to filter.

CodeNameWhat it means in practice
100ContinueThe client can go ahead and send the request body.
101Switching ProtocolsAgreed to switch — this is how a WebSocket connection upgrades.
103Early HintsPreliminary headers before the real response; a performance trick.
200OKWorked. The body holds what you asked for.
201CreatedSuccess that made something new — the classic POST response.
202AcceptedReceived and queued, not finished yet.
204No ContentSuccess with an empty body — common after DELETE or a save.
206Partial ContentA range was served — video scrubbing and resumable downloads.
301Moved PermanentlyThe address changed for good; update links — search engines transfer rankings.
302FoundA temporary redirect; the original URL remains the real one.
304Not ModifiedThe cached copy is still fresh — the quiet workhorse of fast browsing.
307Temporary RedirectTemporary, but the HTTP method must not change.
308Permanent RedirectPermanent, but the HTTP method must not change.
400Bad RequestThe request itself is malformed; the server refuses to parse it.
401Unauthorized"Who are you?" — credentials missing or failed. Log in properly and retry.
403Forbidden"I know who you are — still no." A permissions problem, not a login one.
404Not FoundNo resource at this URL. The most famous error on the web.
405Method Not AllowedA GET where only POST is accepted, and similar mismatches.
409ConflictThe request fights the resource's current state — often a duplicate.
410GoneRemoved on purpose, permanently. Tell search engines it's final.
413Content Too LargeThe request body exceeds the server's limit.
414URI Too LongThe URL exceeds limits — usually a query string gone rogue.
415Unsupported Media TypeWrong payload format for this endpoint (check Content-Type).
429Too Many RequestsRate limit hit — slow down; the response often says when to retry.
431Request Header Fields Too LargeHeaders too big — an oversized cookie is the usual suspect.
451Unavailable For Legal ReasonsBlocked by a legal demand rather than a technical one.
500Internal Server ErrorThe server's own code crashed. The cause lives in its logs.
501Not ImplementedThe server doesn't support this action at all.
502Bad GatewayA middleman server got garbage from the server behind it.
503Service UnavailableOverloaded or down for maintenance — often temporary.
504Gateway TimeoutThe server behind the middleman took too long to answer.
511Network Authentication RequiredThe Wi-Fi wants a login page first — a captive portal.

What this does

A filterable table of the HTTP response codes you meet in real work, grouped by class: 1xx informational, 2xx success, 3xx redirects, 4xx the client's problem, 5xx the server's problem. Type a code (404) or a word (timeout) and the table narrows as you type.

Notes

The descriptions are deliberately plain rather than quotable-spec: what the code means in practice and what usually caused it. The formal definitions live in the IANA registry linked from the full guide to HTTP status codes. This table is static and complete in the page — it works with JavaScript disabled too (the typing filter is the only dynamic part).

Privacy note: every tool on this desk processes your input on your device, in this page — nothing is uploaded, stored or sent anywhere. The same policy the terms and privacy pages promise.