HTTP Status Codes / 1xx HTTP Status Codes

1xx HTTP Status Codes

1xx status codes are informational responses sent before the final response.

This is an educational guide. The pages linked here are documentation pages served as 200 OK, even when the HTTP status code being explained is an error response.

What 1xx means

Informational responses are interim HTTP responses. They tell the client that the server has received the request and that the exchange is still in progress. A final non-1xx response normally follows.

Where 1xx responses appear

Implementation notes

All 1xx status codes

CodeNameMeaning
100ContinueThe server has received the request headers and the client should proceed to send the request body (in the case of a request for which a body needs to be sent; for example, a POST request). Sending a large request body to a server after a request has been rejected for inappropriate headers would be inefficient. To have a server check the request's headers, a client must send Expect: 100-continue as a header in its initial request and receive a 100 Continue status code in response before sending the body. If the client receives an error code such as 403 (Forbidden) or 405 (Method Not Allowed) then it should not send the request's body. The response 417 Expectation Failed indicates that the request should be repeated without the Expect header as it indicates that the server does not support expectations (this is the case, for example, of HTTP/1.0 servers).
101Switching ProtocolsThe requester has asked the server to switch protocols and the server has agreed to do so.
102ProcessingA WebDAV request may contain many sub-requests involving file operations, requiring a long time to complete the request. This code indicates that the server has received and is processing the request, but no response is available yet. This prevents the client from timing out and assuming the request was lost.
103Early HintsUsed to return some response headers before final HTTP message.

HTTP status code lookup
By Ping Now, a website/API/service uptime monitor
Data from Wikipedia