Look up any HTTP status code — 200, 404, 500, and everything in between — with a plain-English explanation of what it means and when servers return it.
HTTP status codes are the three-digit numbers a web server sends back with every response, telling the client (browser, app, or API consumer) whether the request succeeded, needs a redirect, or failed — and why. They're standardized by the IETF and used identically across every web server, browser, and programming language, which makes them one of the most universal debugging references in software development.
This lookup tool covers the most commonly encountered codes across all five categories — informational (1xx), success (2xx), redirection (3xx), client error (4xx), and server error (5xx) — with plain-English explanations of what each one actually means in practice, not just the formal RFC definition.
Searching "429" returns "Too Many Requests" — the code APIs return when you've exceeded a rate limit, telling you to slow down and retry after a delay.