HTTP 207 - Multi-Status

This page was served with real HTTP status code 207.

📜 JavaScript Example

fetch("/statuscode?q=207").then(res => {
  if (res.status === 207) {
    console.log("Handle Multi-Status");
  }
});

📡 cURL Request

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

curl "/statuscode?q=207"

← Back to full list