HTTP 205 - Reset Content

This page was served with real HTTP status code 205.

📜 JavaScript Example

fetch("/statuscode?q=205").then(res => {
  if (res.status === 205) {
    console.log("Handle Reset Content");
  }
});

📡 cURL Request

Use this command to simulate this status code from your terminal:

curl "/statuscode?q=205"

← Back to full list