HTTP 205 Reset Content tells the client that the request was successful and the client should reset the document view that caused the request. This is useful for form submissions — the server confirms receipt and the client should clear the form fields.
205 Reset ContentPOST /search HTTP/1.1
Host: www.example.com
User-Agent: curl/8.6.0
Content-Type: application/x-www-form-urlencoded
Content-Length: 14
query=dns+toolsHTTP/1.1 205 Reset Content
<browser clears the search box so the user can start a new search>Ensure the client application resets the form or document view when receiving a 205 response.
205 is rarely used in practice. Most applications use 200 with a response body or 204 for no-content success.
The server processed a form submission and instructs the browser to reset the form to its initial state.
| Specification | Section |
|---|---|
| HTTP Semantics | RFC 9110 §15.3.6 |
This reference was compiled from official RFCs, protocol specifications, and hands-on troubleshooting experience. AI tools were used primarily for formatting and organizing the content on the page.