index.php 135 B

12345678910
  1. <?php
  2. header("Content-Type: application/json");
  3. http_response_code(404);
  4. echo json_encode(
  5. [
  6. "status" => "Unknown endpoint"
  7. ]
  8. );