HTTP Status Codes
NetworkReference guide for all HTTP status codes with search and category filter
Search by code number, like 429, and get its meaning and typical use back instantly, or filter by category (2xx, 4xx, 5xx) to browse related codes while deciding which one actually fits a response you're designing. It covers the official IANA-registered codes plus a handful of widely used unofficial ones like 418, clearly marked as non-standard so you don't mistake them for spec. Beyond definitions it includes the judgment calls that trip people up in practice: 401 signals missing or invalid credentials and implies the client should try authenticating, while 403 means the credentials are fine but access still isn't allowed, so retrying auth won't help; for validation errors, 422 is the more semantically correct choice over 400, though plenty of APIs use them interchangeably. It's a static reference: searching and filtering all happen client-side with nothing sent anywhere.
How to use HTTP Status Codes
- 1.Search by status code number (e.g. "429") to instantly see its meaning and typical use case.
- 2.Filter by category (2xx success, 4xx client error, 5xx server error) to browse related codes when deciding which one fits your API response.
- 3.Look up an unfamiliar code you encountered in a log or API response to understand what it signals before writing error-handling logic.
Frequently asked questions
Use via API, SDK, or MCP
cURLcurl "https://api.utilix.tech/v1/tools/http-status" \
-H "Authorization: Bearer utx_live_..."
# Free: 1,000 req/day · Pro: 10,000 req/dayGet an API key from your dashboard · Full API docs →