Network tools
// Network

HTTP Status

> Look up status codes by number, phrase, or category — 1xx through 5xx.

search.cfg

> 32 code(s)

100ContinueInformational

Request received; client may continue.

101Switching ProtocolsInformational

Server switching protocols as requested.

102ProcessingInformational

Request accepted; processing not complete (WebDAV).

103Early HintsInformational

Hints for preloading resources while preparing response.

200OKSuccess

Request succeeded.

201CreatedSuccess

Resource created successfully.

202AcceptedSuccess

Request accepted for processing but not completed.

204No ContentSuccess

Success with empty response body.

206Partial ContentSuccess

Partial resource returned (range requests).

301Moved PermanentlyRedirection

Resource permanently moved to a new URI.

302FoundRedirection

Temporary redirect to another URI.

303See OtherRedirection

Response available at another URI via GET.

304Not ModifiedRedirection

Cached version is still valid.

307Temporary RedirectRedirection

Temporary redirect; method must not change.

308Permanent RedirectRedirection

Permanent redirect; method must not change.

400Bad RequestClient Error

Malformed request syntax or invalid framing.

401UnauthorizedClient Error

Authentication required or failed.

403ForbiddenClient Error

Server understood but refuses to authorize.

404Not FoundClient Error

Target resource does not exist.

405Method Not AllowedClient Error

HTTP method not supported for this resource.

408Request TimeoutClient Error

Server timed out waiting for the request.

409ConflictClient Error

Request conflicts with current resource state.

410GoneClient Error

Resource permanently removed.

413Payload Too LargeClient Error

Request body larger than server allows.

415Unsupported Media TypeClient Error

Payload format not supported.

422Unprocessable EntityClient Error

Well-formed but semantic errors (validation).

429Too Many RequestsClient Error

Rate limit exceeded.

500Internal Server ErrorServer Error

Unexpected server condition.

501Not ImplementedServer Error

Server does not support the requested functionality.

502Bad GatewayServer Error

Invalid response from upstream server.

503Service UnavailableServer Error

Server temporarily overloaded or down.

504Gateway TimeoutServer Error

Upstream server failed to respond in time.