HTTP 206 - Partial Content

This page was served with real HTTP status code 206.

📜 JavaScript Example

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

📡 cURL Request

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

curl "/statuscode?q=206"

← Back to full list