HTTP 1xx Informational Status Codes

Informational responses like 100 Continue and 103 Early Hints.

View
StandardDetailedCompact
Export
Copy the compact sheet, download it, or print it.
Download
`D` dense toggle · `C` copy all

HTTP 1xx Informational Status Codes

Informational responses like 100 Continue and 103 Early Hints.

HTTP 100 Continue

Client may continue request body

textANYhttpstatus-code1xxhttp-100
text
curl -v -H 'Expect: 100-continue' -T bigfile.bin https://example.com/upload
Notes

A client can continue sending the request body after the initial headers.

HTTP 101 Switching Protocols

Server is switching protocols

textANYhttpstatus-code1xxhttp-101
text
curl -i -N -H 'Connection: Upgrade' -H 'Upgrade: websocket' https://example.com/socket
Notes

Used when a client requests a protocol switch, such as upgrading to WebSocket.

HTTP 102 Processing

Server has received and is processing

textANYhttpstatus-code1xxhttp-102
text
PROPFIND /webdav/resource HTTP/1.1
Notes

Historically used to indicate long-running processing before a final response.

HTTP 103 Early Hints

Preliminary headers before the final response

textANYhttpstatus-code1xxhttp-103
text
HTTP/1.1 103 Early Hints
Link: </app.css>; rel=preload; as=style
Notes

Can be used to send hints, such as preload links, before the final response arrives.

Recommended next

No recommendations yet.