Axonix Tools

HTTP Status Codes Reference

A complete HTTP status codes list for web developers. Search, filter, and master REST API status codes with official definitions.

100

Continue

"The server has received the request headers and the client should proceed to send the request body."

1xx SERIES
101

Switching Protocols

"The requester has asked the server to switch protocols and the server has agreed to do so."

1xx SERIES
200

OK

"Standard response for successful HTTP requests. The payload depends on the request method."

2xx SERIES
201

Created

"The request has been fulfilled, resulting in the creation of a new resource."

2xx SERIES
202

Accepted

"The request has been accepted for processing, but the processing has not been completed."

2xx SERIES
204

No Content

"The server successfully processed the request and is not returning any content."

2xx SERIES
301

Moved Permanently

"The request and all future requests should be directed to the given URI."

3xx SERIES
302

Found

"Temporary redirect to a different URI. Used for temporary URL changes."

3xx SERIES
304

Not Modified

"Indicates that the resource has not been modified since the version specified by headers."

3xx SERIES
400

Bad Request

"The server cannot or will not process the request due to an apparent client error."

4xx SERIES
401

Unauthorized

"Authentication is required and has failed or has not yet been provided."

4xx SERIES
403

Forbidden

"The request was valid, but the server is refusing action due to insufficient permissions."

4xx SERIES
404

Not Found

"The requested resource could not be found but may be available in the future."

4xx SERIES
405

Method Not Allowed

"A request method is not supported for the requested resource (e.g., POST on a GET-only route)."

4xx SERIES
408

Request Timeout

"The server timed out waiting for the request from the client."

4xx SERIES
409

Conflict

"Indicates that the request could not be processed because of conflict in the current state."

4xx SERIES
418

I'm a teapot

"The HTCPCP server is a teapot; use this for comedic effect or non-standard errors."

4xx SERIES
429

Too Many Requests

"The user has sent too many requests in a given amount of time (rate limiting)."

4xx SERIES
500

Internal Server Error

"A generic error message, given when an unexpected condition was encountered."

5xx SERIES
502

Bad Gateway

"The server received an invalid response from an upstream server."

5xx SERIES
503

Service Unavailable

"The server is currently down for maintenance or is overloaded."

5xx SERIES
504

Gateway Timeout

"The server did not receive a timely response from the upstream server."

5xx SERIES

Built With Care

HTTP status codes are defined in RFC 7231 and related RFCs. Using the correct code matters because browsers, search engine crawlers, and API clients all rely on them to decide what to do next.

HTTP Status Codes

Look up any HTTP status code and see what it means. This reference covers common codes like 200, 301, 404, and 500, plus lesser-known ones like 418 and 429, with plain-English explanations.

No signup neededRuns offlineClient-side processing
How to Use HTTP Status Codes
  • 1Use the search bar to look up a specific code (e.g., 403) or a keyword (e.g., 'Not Found').
  • 2Filter by category (1xx-5xx) to explore specific types of responses, like errors or redirects.
  • 3Click on any card to read a detailed definition of the response code and why it is used.
  • 4Check the 'Series' label to understand the general domain of the code (e.g., Client Error, Success).
  • 5Use these definitions to correctly implement response handling in your web application.
Key Features
  • Instant Search: Blazing fast lookup for over 50 standard and non-standard HTTP codes.
  • Categorized View: Organized grouping by series (e.g., 4xx Client Errors, 5xx Server Errors).
  • RFC Aligned: Descriptions strictly follow official protocol standards for high accuracy.
  • Visual Indicators: Color-coded cards and icons for instant status recognition.
  • Pro Reference: Includes rare codes like 418 I'm a Teapot and 429 Too Many Requests.

Real Ways People Use This

Debugging API Responses

Look up unfamiliar status codes your backend returns so you can fix the root cause instead of guessing.

SEO and Redirect Planning

Understand the difference between 301 and 302 redirects so you don't accidentally lose search rankings.

Onboarding New Developers

Give junior devs a quick reference they can search while learning how HTTP works in practice.

Important Notes
  • This page covers the most commonly used HTTP status codes, not every registered code in the IANA registry.
  • Some codes (like 418 I'm a teapot) are jokes in the spec and won't appear in real production traffic.
Quick Checklist
  • 1Look up the exact code your server returned before assuming what went wrong.
  • 2Check whether the error is client-side (4xx) or server-side (5xx) to narrow your debugging.

Questions That Usually Come Up

More Tools You’ll Actually Use