DevTools

HTTP Status Code & Header Reference

Browse every standard HTTP status code, or paste a raw response (or curl -v output) to get a plain-English interpretation of the status and headers.

62 of 62 codes

1xx Informational

100 Continue Origin server

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

  • Sent automatically by the server in response to a request with an 'Expect: 100-continue' header, before the client uploads a large body.
101 Switching Protocols Origin server or reverse proxy

The server is complying with a client request to switch protocols, most commonly to WebSocket.

  • A WebSocket handshake ('Upgrade: websocket') succeeded.
102 Processing Origin server (WebDAV)

WebDAV: the server has accepted the request but has not yet completed it, sent to prevent client timeout.

  • Long-running WebDAV operations like COPY or MOVE on large collections.
103 Early Hints CDN or reverse proxy

Sent before the final response to let the client start preloading resources referenced by Link headers.

  • A server/CDN sending preconnect or preload hints while it prepares the actual response.

2xx Success

200 OK Origin server

The request succeeded. The meaning of success depends on the HTTP method (e.g. the resource was fetched for GET).

  • A normal, successful request/response cycle.
201 Created Origin server

The request succeeded and a new resource was created as a result, typically after a POST or PUT.

  • Successfully creating a new record via an API — usually paired with a Location header pointing to the new resource.
202 Accepted Origin server

The request has been accepted for processing, but processing hasn't completed — commonly used for async/queued work.

  • Submitting a job to a background queue or webhook that will be processed later.
203 Non-Authoritative Information Proxy / CDN

The returned metadata is not exactly the same as from the origin server, typically because a proxy modified it.

  • A transforming proxy or CDN altering response headers before passing them on.
204 No Content Origin server

The request succeeded but there is no content to send — the existing page should not be refreshed.

  • Successful DELETE requests; successful PUT/POST where there's nothing to return; CORS preflight OPTIONS responses.
205 Reset Content Origin server

Tells the client to reset the document that sent the request, e.g. clear a form.

  • Rare in practice; used to signal a UI reset after a successful submission.
206 Partial Content Origin server or CDN

Delivering only part of a resource due to a Range header sent by the client.

  • Video/audio streaming, resumable downloads, and byte-range requests.
207 Multi-Status Origin server (WebDAV)

WebDAV: conveys information about multiple sub-requests/resources in one response body.

  • A WebDAV PROPFIND or batch operation covering several resources with different outcomes.
208 Already Reported Origin server (WebDAV)

WebDAV: used inside a DAV binding to avoid re-enumerating the same internal members multiple times.

  • WebDAV collections with multiple bindings to the same resource.
226 IM Used Origin server

The server fulfilled the request and the response is a representation of the result of applying one or more instance manipulations.

  • Delta encoding responses (rarely used in practice).

3xx Redirection

300 Multiple Choices Origin server

The request has more than one possible response; the client/user agent should choose one.

  • Content negotiation where several representations of a resource are available.
301 Moved Permanently Origin server, CDN, or reverse proxy

The resource has permanently moved to a new URL; future requests should use the new URL.

  • Domain migrations, URL restructuring, enforcing HTTPS or a canonical hostname.
302 Found Origin server

The resource temporarily resides at a different URL. Historically often misused where 303/307 would be more correct.

  • Temporary redirects, login flows, load balancing between mirrors.
303 See Other Origin server

Directs the client to fetch the response from a different URL using a GET request — the standard post-POST redirect.

  • The classic 'redirect after form submission' (POST/redirect/GET) pattern.
304 Not Modified Origin server or CDN/cache

The cached version of the resource is still valid; no body is sent. Used with conditional requests.

  • A client sending If-None-Match or If-Modified-Since and the resource hasn't changed.
305 Use Proxy Origin server

Deprecated: the requested resource must be accessed through the given proxy. Removed from modern browsers for security reasons.

  • Legacy proxy-routing configurations; essentially unused today.
307 Temporary Redirect Origin server

Like 302, but guarantees the method and body will NOT change on the redirected request.

  • Temporary redirects where preserving the original HTTP method (e.g. POST) matters.
308 Permanent Redirect Origin server, CDN, or reverse proxy

Like 301, but guarantees the method and body will NOT change on the redirected request.

  • Permanent redirects where preserving the original HTTP method matters, e.g. API endpoint renames.

4xx Client Error

400 Bad Request Origin server or API gateway

The server cannot process the request due to a client error — malformed syntax, invalid request framing, or bad input.

  • Invalid JSON body, missing required fields, malformed query parameters.
401 Unauthorized Origin server or auth middleware

Authentication is required and has failed or has not been provided. (Despite the name, this is about authentication, not authorization.)

  • Missing, expired, or invalid credentials/token/API key.
402 Payment Required Origin server

Reserved for future use; occasionally repurposed by APIs to signal billing/quota issues.

  • Some payment/metering APIs use this non-standardly for 'quota exceeded, please pay'.
403 Forbidden Origin server, WAF, or CDN

The server understood the request but refuses to authorize it — the client's identity is known but lacks permission.

  • Insufficient permissions/roles, IP allowlist blocks, WAF rule matches, disabled accounts.
404 Not Found Origin server or reverse proxy

The server can't find the requested resource; the URL doesn't correspond to any known route.

  • Typo'd URLs, deleted resources, incorrect routing configuration, deployed-but-not-yet-live endpoints.
405 Method Not Allowed Origin server or API gateway

The HTTP method used isn't supported for this resource (e.g. sending POST to a GET-only endpoint).

  • Calling an endpoint with the wrong verb; missing a handler for that method.
406 Not Acceptable Origin server

The server can't produce a response matching the Accept headers sent by the client.

  • Requesting a content type or language the server doesn't support producing.
407 Proxy Authentication Required Proxy

Like 401, but authentication must happen against a proxy in front of the origin server.

  • Corporate/forward proxies requiring credentials before forwarding the request.
408 Request Timeout Origin server or load balancer

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

  • Slow or idle client connections; keep-alive connections held open too long.
409 Conflict Origin server

The request conflicts with the current state of the target resource.

  • Optimistic-concurrency version mismatches, duplicate unique-key inserts, edit conflicts.
410 Gone Origin server

The resource is no longer available and this condition is expected to be permanent, unlike a plain 404.

  • Deliberately decommissioned endpoints or content that was intentionally removed.
411 Length Required Origin server

The server requires a Content-Length header, which the request didn't include.

  • Chunked or streamed request bodies sent where the server insists on a known length.
412 Precondition Failed Origin server

A precondition in the request headers (like If-Match) evaluated to false.

  • Conditional requests used for optimistic concurrency where the resource changed since it was fetched.
413 Content Too Large Origin server, reverse proxy, or CDN

The request body is larger than the server is willing or able to process. (Formerly 'Payload Too Large'.)

  • File uploads exceeding a server, proxy, or CDN body-size limit.
414 URI Too Long Origin server or reverse proxy

The URI requested by the client is longer than the server is willing to interpret.

  • Extremely long query strings, often from putting large data or many parameters in a GET URL.
415 Unsupported Media Type Origin server

The request body's media type (Content-Type) isn't supported by the server for this endpoint.

  • Sending XML to a JSON-only API, or omitting/mis-setting the Content-Type header.
416 Range Not Satisfiable Origin server or CDN

The Range header sent by the client can't be fulfilled, e.g. the range is outside the resource's size.

  • Resuming a download with a stale/incorrect byte-range value.
417 Expectation Failed Origin server or proxy

The server can't meet the requirements of the client's Expect request-header field.

  • An 'Expect: 100-continue' header the server or an intermediate proxy doesn't support.
418 I'm a teapot Origin server (novelty)

An April Fools' joke from RFC 2324 (Hyper Text Coffee Pot Control Protocol); not expected to be implemented by real servers.

  • Easter eggs, or occasionally used by services deliberately blocking bots/scrapers as a joke.
421 Misdirected Request Origin server

The request was directed at a server that can't produce a response for the combination of scheme/authority in the URI.

  • HTTP/2 connection reuse across domains hitting a server not configured for that domain.
422 Unprocessable Content Origin server

The request was well-formed but semantically invalid — e.g. it fails validation rules. Common in REST APIs.

  • Failed field-level validation: wrong data types, out-of-range values, business-rule violations.
423 Locked Origin server (WebDAV)

WebDAV: the resource being accessed is locked.

  • A WebDAV client holding a lock on a file that another client tries to modify.
424 Failed Dependency Origin server (WebDAV)

WebDAV: the request failed because it depended on another request that failed.

  • A batched WebDAV operation where an earlier step in the same request failed.
425 Too Early Origin server or TLS-terminating proxy

The server is unwilling to process a request that might be replayed, sent in early (0-RTT) TLS data.

  • TLS 1.3 0-RTT requests the server considers risky to process before the handshake fully completes.
426 Upgrade Required Origin server

The server refuses to perform the request using the current protocol and wants the client to upgrade (e.g. to TLS or a newer HTTP version).

  • A server requiring HTTPS or HTTP/2 rejecting a plaintext/older-protocol request.
428 Precondition Required Origin server

The server requires the request to be conditional (e.g. include If-Match) to avoid the 'lost update' problem.

  • APIs enforcing optimistic concurrency by requiring a precondition header on updates.
429 Too Many Requests API gateway, reverse proxy, or CDN

The client has sent too many requests in a given time window (rate limiting).

  • Hitting an API rate limit; look for a Retry-After header indicating when to try again.
431 Request Header Fields Too Large Origin server or reverse proxy

The server is unwilling to process the request because its header fields are too large.

  • Oversized cookies, excessively long auth tokens, or too many headers.
451 Unavailable For Legal Reasons Origin server or CDN/geo-blocking layer

The resource is unavailable due to a legal demand, such as a government-mandated content block.

  • Court orders, DMCA takedowns, or region-specific legal content restrictions.

5xx Server Error

500 Internal Server Error Origin server (application layer)

A generic error indicating the server encountered an unexpected condition that prevented it from fulfilling the request.

  • Unhandled exceptions in application code, null reference errors, misconfiguration.
501 Not Implemented Origin server

The server doesn't support the functionality required to fulfill the request, often an unrecognized HTTP method.

  • Calling a method or feature the server has never implemented.
502 Bad Gateway Reverse proxy or load balancer (about an upstream problem)

A server acting as a gateway or proxy received an invalid response from the upstream server.

  • The application server crashed or isn't running, or returned a malformed response the proxy couldn't parse.
503 Service Unavailable Origin server or load balancer

The server is temporarily unable to handle the request, often due to overload or maintenance.

  • Deployments/maintenance windows, the app server being overwhelmed, health checks failing.
504 Gateway Timeout Reverse proxy or load balancer (about an upstream problem)

A server acting as a gateway or proxy didn't receive a timely response from the upstream server.

  • A slow backend/database query, an origin server hanging, or a proxy timeout set too aggressively.
505 HTTP Version Not Supported Origin server

The server doesn't support the HTTP protocol version used in the request.

  • A client using an unusual or very old/new HTTP version the server can't negotiate.
506 Variant Also Negotiates Origin server

The server has an internal configuration error: the chosen variant resource is itself configured to engage in content negotiation.

  • Misconfigured transparent content negotiation (very rare in practice).
507 Insufficient Storage Origin server (WebDAV)

WebDAV: the server is unable to store the representation needed to complete the request.

  • The server's disk or storage backend is full.
508 Loop Detected Origin server (WebDAV)

WebDAV: the server detected an infinite loop while processing the request.

  • Circular references in WebDAV bindings.
510 Not Extended Origin server

Further extensions to the request are required for the server to fulfill it.

  • Rare; tied to the obsolete HTTP Extension Framework.
511 Network Authentication Required Network gateway / captive portal

The client needs to authenticate to gain network access, e.g. a captive portal.

  • Public Wi-Fi captive portals intercepting requests before granting internet access.
An unhandled error has occurred. Reload 🗙

Rejoining the server...

Rejoin failed... trying again in seconds.

Failed to rejoin.
Please retry or reload the page.

The session has been paused by the server.

Failed to resume the session.
Please retry or reload the page.