HTTP 201 - Created

This page was served with real HTTP status code 201.

📜 JavaScript Example

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

📡 cURL Request

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

curl "/statuscode?q=201"

← Back to full list