Free2BoxFree2Box

HTTPステータスコード

すべてのHTTPステータスコードとその意味のクイックリファレンス

61 / 61 status codes

1xx 情報
4 status codes
100

Continue

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

101

Switching Protocols

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

102

Processing

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

103

Early Hints

Used to return some response headers before final HTTP message.

2xx 成功
10 status codes
200

OK

The request has succeeded. The meaning depends on the HTTP method used.

201

Created

The request has been fulfilled and a new resource has been created.

202

Accepted

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

203

Non-Authoritative Information

The returned metadata is not exactly the same as available from the origin server.

204

No Content

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

205

Reset Content

The server successfully processed the request and is asking the requester to reset the document view.

206

Partial Content

The server is delivering only part of the resource due to a range header sent by the client.

207

Multi-Status

The message body contains multiple status codes for multiple independent operations.

208

Already Reported

The members of a DAV binding have already been enumerated in a previous reply.

226

IM Used

The server has fulfilled a request for the resource, and the response represents one or more instance-manipulations.

3xx リダイレクト
8 status codes
300

Multiple Choices

The request has more than one possible response. The user should choose one of them.

301

Moved Permanently

The URL of the requested resource has been changed permanently. The new URL is given in the response.

302

Found

The URI of the requested resource has been changed temporarily. Further changes might be made in the future.

303

See Other

The server sent this response to direct the client to get the requested resource at another URI with a GET request.

304

Not Modified

The resource has not been modified since the last request. The client can use the cached version.

305

Use Proxy

The requested resource must be accessed through the proxy given by the Location field. (Deprecated)

307

Temporary Redirect

The server sends this response to redirect the client with the same HTTP method as the prior request.

308

Permanent Redirect

The resource is permanently located at another URI, specified by the Location header. Same method must be used.

4xx クライアントエラー
28 status codes
400

Bad Request

The server cannot or will not process the request due to something perceived to be a client error.

401

Unauthorized

The client must authenticate itself to get the requested response. Similar to 403 but authentication is possible.

402

Payment Required

Reserved for future use. Originally created for digital payment systems.

403

Forbidden

The client does not have access rights to the content. Unlike 401, the client's identity is known to the server.

404

Not Found

The server cannot find the requested resource. This is the most common error response on the web.

405

Method Not Allowed

The request method is known by the server but is not supported by the target resource.

406

Not Acceptable

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

407

Proxy Authentication Required

The client must first authenticate itself with the proxy.

408

Request Timeout

The server would like to shut down this unused connection. Sent on an idle connection by some servers.

409

Conflict

The request conflicts with the current state of the server.

410

Gone

The content has been permanently deleted from the server, with no forwarding address.

411

Length Required

The server rejected the request because the Content-Length header field is not defined.

412

Precondition Failed

The client has indicated preconditions in its headers which the server does not meet.

413

Payload Too Large

The request entity is larger than limits defined by the server.

414

URI Too Long

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

415

Unsupported Media Type

The media format of the requested data is not supported by the server.

416

Range Not Satisfiable

The range specified by the Range header field in the request cannot be fulfilled.

417

Expectation Failed

The expectation indicated by the Expect request header field cannot be met by the server.

418

I'm a Teapot

The server refuses the attempt to brew coffee with a teapot. (RFC 2324, an April Fools' joke)

422

Unprocessable Entity

The request was well-formed but was unable to be followed due to semantic errors.

423

Locked

The resource that is being accessed is locked.

424

Failed Dependency

The request failed because it depended on another request and that request failed.

425

Too Early

The server is unwilling to risk processing a request that might be replayed.

426

Upgrade Required

The server refuses to perform the request using the current protocol but might be willing to after the client upgrades.

428

Precondition Required

The origin server requires the request to be conditional to prevent lost update conflicts.

429

Too Many Requests

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

431

Request Header Fields Too Large

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

451

Unavailable For Legal Reasons

The user agent requested a resource that cannot legally be provided.

5xx サーバーエラー
11 status codes
500

Internal Server Error

The server has encountered a situation it does not know how to handle.

501

Not Implemented

The request method is not supported by the server and cannot be handled.

502

Bad Gateway

The server acting as a gateway got an invalid response from the upstream server.

503

Service Unavailable

The server is not ready to handle the request. Common causes are maintenance or overload.

504

Gateway Timeout

The server acting as a gateway did not get a response in time from the upstream server.

505

HTTP Version Not Supported

The HTTP version used in the request is not supported by the server.

506

Variant Also Negotiates

The server has an internal configuration error: transparent content negotiation results in a circular reference.

507

Insufficient Storage

The server is unable to store the representation needed to complete the request.

508

Loop Detected

The server detected an infinite loop while processing the request.

510

Not Extended

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

511

Network Authentication Required

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

使い方

1

ツールを開く

セットアップ不要 — ツールはブラウザで即座に読み込まれます。

2

操作して探索

マウス、キーボード、またはタッチでリアルタイムに操作します。

3

いつでもどこでも利用可能

デスクトップとモバイルに対応 — 外出先でも練習や作成ができます。

このツールを使う理由

完全無料

隠れたコストもプレミアムプランもありません — すべての機能が無料です。

インストール不要

すべてブラウザで実行されます。ソフトウェアのダウンロードやインストールは不要です。

プライベート&安全

データはデバイスの外に出ることはありません。サーバーにアップロードされることはありません。

モバイル対応

完全レスポンシブ対応 — スマートフォン、タブレット、デスクトップで利用できます。

HTTP Status Codes: The Complete Reference Guide

Key Takeaways

  • HTTP status codes are grouped into five classes: 1xx (informational), 2xx (success), 3xx (redirection), 4xx (client error), and 5xx (server error).
  • Choosing the correct status code for API responses is critical for proper client behavior, caching, and debugging.
  • This reference tool runs entirely in your browser — no network requests are made.

HTTP status codes are the standardized response language between web servers and clients. Every API response, page load, and resource request includes a status code that tells the client exactly what happened. Understanding these codes is essential for building robust APIs, debugging network issues, and implementing proper error handling in web applications.

There are 63 officially registered HTTP status codes defined across multiple RFCs, with 5 major classes.

Standard Codes

Key Concepts

1

2xx Success Codes

200 OK (standard success), 201 Created (resource created), 204 No Content (success with empty body), 206 Partial Content (range request). Each has specific semantics for proper API design.

2

3xx Redirection Codes

301 Moved Permanently (SEO-safe redirect), 302 Found (temporary redirect), 304 Not Modified (cache validation), 307 Temporary Redirect (preserves HTTP method).

3

4xx Client Error Codes

400 Bad Request (malformed syntax), 401 Unauthorized (authentication required), 403 Forbidden (access denied), 404 Not Found, 429 Too Many Requests (rate limiting).

4

5xx Server Error Codes

500 Internal Server Error (generic failure), 502 Bad Gateway (upstream failure), 503 Service Unavailable (temporary overload), 504 Gateway Timeout (upstream timeout).

Pro Tips

Use 201 Created (not 200) when a POST request successfully creates a resource — include a Location header pointing to the new resource.

Return 429 Too Many Requests with a Retry-After header when rate limiting — this tells clients exactly when to retry.

Use 401 for missing/invalid authentication and 403 for valid authentication but insufficient permissions — they have different meanings.

Avoid using 200 with an error message in the body — this anti-pattern breaks error handling in HTTP clients and monitoring tools.

This HTTP status code reference runs entirely in your browser with no network requests. All content is bundled locally for instant access.

よくある質問