HTTP 200 - OK

This page was served with real HTTP status code 200.

📜 JavaScript Example

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

📡 cURL Request

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

curl "/statuscode?q=200"

← Back to full list