HTTP Status Reference

Quick lookup for HTTP status codes

100

Continue

The client should continue with its request

101

Switching Protocols

Server agrees to switch protocols

102

Processing

Server has received and is processing the request (WebDAV)

103

Early Hints

Hints for preloading resources before the final response

200

OK

Request succeeded

201

Created

Request succeeded and a new resource was created

202

Accepted

Request accepted but processing not yet completed

203

Non-Authoritative Information

Response from a third-party copy of the resource

204

No Content

Request succeeded, no body to return

205

Reset Content

Ask the client to reset the document view

206

Partial Content

Partial GET request fulfilled

207

Multi-Status

Multiple status codes (WebDAV)

208

Already Reported

Members reported in a previous reply (WebDAV)

226

IM Used

The server fulfilled a GET request using instance manipulation

300

Multiple Choices

Multiple options for the resource

301

Moved Permanently

Resource permanently moved to new URL

302

Found

Temporary redirect to different URL

303

See Other

Redirect to another URI using GET

304

Not Modified

Cached version is still valid

307

Temporary Redirect

Repeat request with same method to new URL

308

Permanent Redirect

Permanent redirect; do not change method

400

Bad Request

Malformed request syntax or invalid parameters

401

Unauthorized

Authentication required

402

Payment Required

Reserved for digital payment systems

403

Forbidden

Server refuses to authorize the request

404

Not Found

Requested resource could not be found

405

Method Not Allowed

HTTP method not allowed for the resource

406

Not Acceptable

Response content type not acceptable to client

407

Proxy Authentication Required

Client must authenticate with proxy

408

Request Timeout

Server timed out waiting for request

409

Conflict

Request conflicts with current state of resource

410

Gone

Resource permanently deleted

411

Length Required

Content-Length header required

412

Precondition Failed

Precondition in request headers failed

413

Content Too Large

Request body exceeds server limit

414

URI Too Long

URI is longer than server can process

415

Unsupported Media Type

Media type not supported by the server

416

Range Not Satisfiable

Range header cannot be fulfilled

417

Expectation Failed

Expect header cannot be met

418

I'm a Teapot

The server refuses to brew coffee (April Fools RFC 2324)

421

Misdirected Request

Request directed at a server unable to produce a response

422

Unprocessable Content

Request well-formed but semantic errors

423

Locked

Resource being accessed is locked (WebDAV)

424

Failed Dependency

Method failed due to previous dependent request (WebDAV)

425

Too Early

Server unwilling to risk replaying early data

426

Upgrade Required

Client must upgrade to use the service

428

Precondition Required

Server requires conditional request

429

Too Many Requests

Client exceeded rate limit

431

Request Header Fields Too Large

Header fields too large

451

Unavailable For Legal Reasons

Resource unavailable due to legal reasons

500

Internal Server Error

Generic server error

501

Not Implemented

Server does not support the functionality

502

Bad Gateway

Invalid response from upstream server

503

Service Unavailable

Server temporarily unavailable or overloaded

504

Gateway Timeout

Upstream server timed out

505

HTTP Version Not Supported

HTTP version used in request not supported

506

Variant Also Negotiates

Content negotiation circular reference

507

Insufficient Storage

Server unable to store representation (WebDAV)

508

Loop Detected

Infinite loop detected (WebDAV)

510

Not Extended

Further extensions required to fulfil the request

511

Network Authentication Required

Client must authenticate for network access

About the HTTP Status Code Reference

This HTTP status codes reference lists every code from 100 to 599 with its meaning and the practical difference between similar ones — which matters because caches, browsers and crawlers all behave differently per code.

HTTP status codes are grouped by first digit: 2xx succeeded, 3xx redirects, 4xx the client got it wrong, 5xx the server did. That much is widely known; the distinctions within each group are what get looked up.

The redirect pair matters most. A 301 is permanent and is cached aggressively by browsers and treated by search engines as a signal to transfer ranking to the new URL; a 302 is temporary and transfers nothing. Using 301 during a migration you later reverse is genuinely painful, because browsers keep following the cached redirect.

On the error side, 404 says the resource is not there while 410 says it was deliberately removed, and crawlers drop a 410 faster. A 503 tells a crawler to come back rather than to drop the page, which is why it is the correct response during maintenance. To check what a live URL actually returns, use the HTTP status checker.

How to use the HTTP Status Code Reference

  1. Find the code. Browse by class or search for the specific number.
  2. Read the meaning. See what the code asserts and when it applies.
  3. Check the handling. Note how browsers, caches and crawlers treat it.
  4. Pick the right one. Choose the code that matches your intent, not just the class.

HTTP Status Code Reference features

  • Complete HTTP status reference
  • 1xx-5xx code categories
  • Detailed explanations
  • Common use cases
  • API development focus
  • Error code meanings
  • Redirect code guide
  • Professional accuracy
  • Web development essential
  • HTTP protocol reference

Frequently asked questions

What HTTP status code categories are covered?

Comprehensive coverage of all categories: 1xx (Informational), 2xx (Success), 3xx (Redirection), 4xx (Client Errors), and 5xx (Server Errors). Complete reference with detailed explanations and use cases for web development.

What are the most common HTTP status codes?

Essential codes: 200 (OK), 201 (Created), 301 (Moved Permanently), 302 (Found), 400 (Bad Request), 401 (Unauthorized), 403 (Forbidden), 404 (Not Found), 500 (Internal Server Error), and 503 (Service Unavailable).

How do HTTP status codes work in web development?

HTTP status codes communicate request outcomes between servers and clients. 2xx codes indicate success, 3xx codes handle redirects, 4xx codes show client errors, and 5xx codes indicate server problems for proper error handling.

What are the differences between redirect codes?

Key differences: 301 (Permanent Redirect) for SEO-friendly permanent moves, 302 (Found) for temporary redirects, 303 (See Other) for POST-to-GET redirects, 307 (Temporary Redirect) preserving method, and 308 (Permanent Redirect) preserving method.

How should developers handle HTTP status codes?

Best practices: implement proper error handling for 4xx codes, server monitoring for 5xx codes, SEO optimization with correct redirects, user-friendly error pages, and logging for debugging and analytics.

What are the applications in API development?

Essential for REST APIs: 200 for successful GET requests, 201 for resource creation, 400 for validation errors, 401 for authentication, 403 for authorization, 404 for missing resources, and 500 for server errors in API responses.

Is this suitable for professional web development?

Absolutely! Professional-grade reference suitable for web developers, backend engineers, API developers, and system administrators. Essential for debugging, error handling, and implementing proper HTTP protocols.