HTTP Status Code Reference

HTTP Status Code Reference

Complete HTTP status code reference — all 1xx, 2xx, 3xx, 4xx, and 5xx codes explained with meanings, use cases, and SEO impact.

Updated May 2026

100 INFO

Continue

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

101 INFO

Switching Protocols

The server agrees to switch protocols as requested by the client via the Upgrade header.

102 INFO

Processing

The server has received and is processing the request, but no response is available yet.

103 INFO

Early Hints

Used to return response headers before the final HTTP message, allowing the browser to start preloading resources.

200 SUCCESS

OK

The request succeeded. The server returned the requested resource. Required for a page to be indexed by Google.

201 SUCCESS

Created

The request succeeded and a new resource was created. Commonly used in REST APIs after a POST request.

202 SUCCESS

Accepted

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

203 SUCCESS

Non-Authoritative Information

The request succeeded but the returned metadata is from a local or third-party copy, not the origin server.

204 SUCCESS

No Content

The request succeeded but there is no content to return. Common for DELETE or PATCH API responses.

205 SUCCESS

Reset Content

The server fulfilled the request and asks the client to reset the document view (e.g., clear a form).

206 SUCCESS

Partial Content

The server is delivering only part of the resource due to a Range header. Used in streaming and resumable downloads.

207 SUCCESS

Multi-Status

Conveys information about multiple resources in situations where multiple status codes might be appropriate. Used in WebDAV.

208 SUCCESS

Already Reported

The members of a DAV binding have already been enumerated in a preceding part of the response.

226 SUCCESS

IM Used

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

300 REDIRECT

Multiple Choices

The request has more than one possible response. The user agent or user should choose one.

301 REDIRECT

Moved Permanently

The resource has permanently moved to a new URL. Passes full link equity — use for all permanent redirects and HTTPS migrations.

302 REDIRECT

Found

The resource has temporarily moved. Google passes signals through 302s but use 301 for permanent moves to avoid canonical confusion.

303 REDIRECT

See Other

The server redirects the client to a different resource using a GET request. Often used after a POST to prevent form resubmission.

304 REDIRECT

Not Modified

The resource has not changed since the last request. The browser should use its cached version. Reduces bandwidth on repeat visits.

307 REDIRECT

Temporary Redirect

Like 302, but explicitly preserves the HTTP method. Use when method preservation is required for temporary redirects.

308 REDIRECT

Permanent Redirect

Like 301, but preserves the HTTP method. Used in APIs that need to permanently redirect POST requests.

400 CLIENT ERROR

Bad Request

The server cannot process the request due to malformed syntax or invalid parameters. Common in APIs with missing or invalid fields.

401 CLIENT ERROR

Unauthorized

Authentication is required and has not been provided or is invalid. Means "Who are you?" — not to be confused with 403.

402 CLIENT ERROR

Payment Required

Reserved for future use. Originally intended for digital payment systems; now used by some APIs to signal quota limits.

403 CLIENT ERROR

Forbidden

The server understood the request but refuses to authorize it. The client is known but lacks permission. Distinct from 401.

404 CLIENT ERROR

Not Found

The server cannot find the requested resource. The most common error on the web. Redirect important 404 pages with a 301.

405 CLIENT ERROR

Method Not Allowed

The HTTP method used is not allowed for the requested resource. The response must include an Allow header listing valid methods.

406 CLIENT ERROR

Not Acceptable

The server cannot produce a response matching the list of acceptable values in the request's Accept headers.

407 CLIENT ERROR

Proxy Authentication Required

Authentication with the proxy server is required before the request can be fulfilled.

408 CLIENT ERROR

Request Timeout

The server timed out waiting for the request. The client may repeat the request without modifications.

409 CLIENT ERROR

Conflict

The request conflicts with the current state of the target resource. Common when trying to create a duplicate record.

410 CLIENT ERROR

Gone

The resource is permanently removed and will not return. Stronger removal signal than 404 — Google processes 410 faster for URL de-indexing.

411 CLIENT ERROR

Length Required

The server refuses to accept the request without a defined Content-Length header.

412 CLIENT ERROR

Precondition Failed

The server does not meet one or more preconditions set in the request headers.

413 CLIENT ERROR

Content Too Large

The request body is larger than the server is willing to process. The server may close the connection.

414 CLIENT ERROR

URI Too Long

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

415 CLIENT ERROR

Unsupported Media Type

The media format of the requested data is not supported by the server. Check the Content-Type header.

416 CLIENT ERROR

Range Not Satisfiable

The server cannot serve the requested ranges. The Range header field value is outside the resource's actual size.

417 CLIENT ERROR

Expectation Failed

The server cannot meet the expectations indicated by the Expect request-header field.

418 CLIENT ERROR

I'm a Teapot

The server refuses to brew coffee because it is, permanently, a teapot. An April Fools' joke from RFC 2324 (1998), now a web easter egg.

421 CLIENT ERROR

Misdirected Request

The request was directed at a server that is not able to produce a response for the combination of scheme and authority.

422 CLIENT ERROR

Unprocessable Content

The request is syntactically valid but semantically incorrect. Common in REST APIs with strict field validation.

423 CLIENT ERROR

Locked

The resource being accessed is locked. Used in WebDAV to indicate the resource is locked.

424 CLIENT ERROR

Failed Dependency

The request failed because it depended on another request that failed. Used in WebDAV.

425 CLIENT ERROR

Too Early

The server is unwilling to risk processing a request that might be replayed, to prevent replay attacks.

426 CLIENT ERROR

Upgrade Required

The client should switch to a different protocol. The server sends an Upgrade header indicating the required protocol.

428 CLIENT ERROR

Precondition Required

The origin server requires the request to be conditional. Prevents the "lost update" problem in REST APIs.

429 CLIENT ERROR

Too Many Requests

The client has sent too many requests in a given time (rate limiting). If Googlebot receives 429s, crawl budget is reduced.

431 CLIENT ERROR

Request Header Fields Too Large

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

451 CLIENT ERROR

Unavailable For Legal Reasons

The server cannot legally provide the requested resource. Named after Fahrenheit 451. Used for censorship or legal blocks.

500 SERVER ERROR

Internal Server Error

A generic server-side failure. Persistent 500s cause Google to lower crawl frequency and may trigger de-indexing. Monitor in Search Console.

501 SERVER ERROR

Not Implemented

The server does not support the functionality required to fulfill the request. The method is not recognized or implemented.

502 SERVER ERROR

Bad Gateway

The server received an invalid response from an upstream server. Common with Nginx or Cloudflare when the app server crashes or is overloaded.

503 SERVER ERROR

Service Unavailable

The server is temporarily unavailable — overloaded or under maintenance. Include a Retry-After header to prevent Google de-indexing.

504 SERVER ERROR

Gateway Timeout

The gateway did not receive a timely response from the upstream server. Common when a database query or API call takes too long.

505 SERVER ERROR

HTTP Version Not Supported

The server does not support the HTTP version used in the request.

506 SERVER ERROR

Variant Also Negotiates

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

507 SERVER ERROR

Insufficient Storage

The server cannot store the representation needed to complete the request. Used in WebDAV.

508 SERVER ERROR

Loop Detected

The server detected an infinite loop while processing the request. Used in WebDAV.

510 SERVER ERROR

Not Extended

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

511 SERVER ERROR

Network Authentication Required

The client needs to authenticate to gain network access. Used by captive portals (hotel Wi-Fi, etc.) to intercept HTTP requests.

How to use the HTTP status codes list

Search by code, keyword, or class

1. Search for a code

Type the number (404, 502) or a keyword ("redirect", "unauthorized") to jump straight to it.

2. Or filter by class

Use the 1xx–5xx buttons to browse informational, success, redirect, client-error, or server-error codes.

3. Read the meaning and SEO impact

Every code includes a plain-English definition, a real-world use case, and a practical note for APIs and crawling.

What this HTTP status code reference does

A complete list with a practical, not academic, focus

Every class, 1xx through 5xx

The full set of official HTTP status codes, each explained with context for when it actually shows up.

SEO impact spelled out

How each code affects how Googlebot crawls and indexes a page — not just what the code technically means.

REST API notes

When to return 201 vs. 204, how 429 affects rate limiting, and other decisions API designers face daily.

Instant search

Find a code by number or keyword instead of scrolling through a giant table.

HTTP status code classes at a glance

Class
Meaning
2xx (200–299)
Success — 200 is required for a page to be indexed
3xx (300–399)
Redirection — 301 passes link equity, 302 does not consolidate it
4xx (400–499)
Client error — 404/410 remove pages from the index
5xx (500–599)
Server error — persistent 5xx codes reduce crawl frequency

When you'll reach for this HTTP status code list

The most common scenarios among people who use this tool

Debugging a 502 bad gateway

Understand that the server got an invalid response from an upstream service — common right after a broken deploy.

Choosing between a 301 and a 302 redirect

301 for permanent changes that consolidate ranking signals; 302 for A/B tests and temporary promotions.

Designing REST API responses

Pick the right status code — 201 for resource creation, 204 for a successful response with no body, 429 for rate limiting.

Investigating an indexing drop

Check whether a "soft 404" or a persistent 5xx error is causing pages to fall out of Google Search Console.

Common HTTP status code mistakes

Soft 404 — page returns 200 but is empty

Google treats it as a missing page anyway, wasting crawl budget. Return a real 404 or 410 instead.

Mixing up 401 and 403

401 means "who are you?" — authentication is missing. 403 means "I know who you are, but you can't come in."

Leaving a 302 in place long-term

It creates canonical ambiguity and stops Google from updating its index. Switch to 301 once the change is permanent.

Why use this HTTP status code reference

It's not just a list — every code comes with its meaning, a practical use case, and its specific SEO impact, useful whether you're a developer debugging an API or an SEO investigating a sudden indexing drop.

Keyword search and class filters make it faster to find the right code than scrolling through a giant reference table.

301 vs. 302 — which one to use

Permanent vs. temporary

301 Moved Permanently
302 Found
Consolidates link equity
yes, in full
yes, under Google's current implementation
Browser caching
aggressive
not cached
Use it for
HTTPS migration, domain change
A/B testing, seasonal promo, geo-redirect

Frequently asked questions

Both mean the page is unavailable. 404 says the resource wasn't found — it might come back later. 410 explicitly declares permanent removal. Google processes a 410 faster and removes the URL from its index sooner than it would for a 404.

References

Related Tools