HTTP 202 - Accepted

This page was served with real HTTP status code 202.

📜 JavaScript Example

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

📡 cURL Request

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

curl "/statuscode?q=202"

← Back to full list