Check server response of

Server response
NS records
Whois domain
Response headers
Request headers
Raw HTML code
200 OK - 2mnh.com
HTTP Status: 200
User-Agent: Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; [email protected])
Server: nginx
Date: Wed, 07 May 2025 10:54:41 GMT
Content-Type: text/html
Content-Length: 7123
Last-Modified: Wed, 05 Jun 2024 10:29:41 GMT
Connection: keep-alive
Vary: Accept-Encoding
ETag: "66603e15-1bd3"
Accept-Ranges: bytes

HTTP Code 200 OK

200 OK is a standard successful HTTP server response. It means that the client’s request (e.g., from a browser) was successfully processed, and the server is delivering the requested data.

When is Code 200 used?

  • When loading a web page
  • When successfully receiving an API response
  • When processing a form or another HTTP request

What does Code 200 mean for the user?

The user receives content without errors, and the page or application functions properly. If Code 200 is accompanied by data, the browser or program processes and displays it to the user.

GET / HTTP/1.1
Host: 2mnh.com
Accept: */*
User-Agent: Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; [email protected])
<!DOCTYPE html>
<html lang="en">
  <head>
    <meta charset="UTF-8" />
    <meta name="viewport" content="width=device-width, initial-scale=1.0" />
    <meta http-equiv="X-UA-Compatible" content="ie=edge" />
    <title>小董董笔记</title>
    <style>
      html,
      body {
        padding: 0;
        margin: 0;
        background: #fafafa;
        text-align: center;
      }

      body {
        padding-top: 3em;
      }

      h1,
      h2 {
        margin-bottom: 3rem;
        font-family: sans-serif;
        color: #666;
      }

      h2 {
        margin-top: 2em;
      }

      .clock {
        position: relative;
        font-family: monaco, consolas, "courier new", monospace;
        font-size: 3.5rem;
        line-height: 1.375;
      }

      .clock:before,
      .clock:after {
        position: absolute;
        top: 0;
        bottom: 0;
        content: ":";
        z-index: 2;
        line-height: 1.15;
        color: #333;
      }

      .clock:before {
        left: 2.325em;
      }

      .clock:after {
        right: 2.325em;
      }

      .clock span {
        position: relative;
        display: inline-block;
        padding: 0 0.25em;
        margin: 0 0.06125em;
        z-index: 1;

        -webkit-transform: perspective(750);
        -moz-transform: perspective(750);
        -ms-transform: perspective(750);
        transform: perspective(750);

        -webkit-transform-style: preserve-3d;
        -moz-transform-style: preserve-3d;
        -ms-transform-style: preserve-3d;
        transform-style: preserve-3d;
      }

      .clock span:first-child {
        margin-left: 0;
      }

      .clock span:last-child {
        margin-right: 0;
      }

      .clock span:nth-child(2),
      .clock span:nth-child(4) {
        margin-right: 0.3em;
      }

      .clock span:nth-child(3),
      .clock span:nth-child(5) {
        margin-left: 0.3em;
      }

      .clock span:before,
      .clock span:after {
        position: absolute;
        left: 0;
        top: 0;
        right: 0;
        bottom: 0;
        color: #eee;
        text-shadow: 0 1px 0 #fff;
        background: #333;
        border-radius: 0.125em;
        outline: 1px solid transparent; /* fix jagged edges in ff */

        -webkit-backface-visibility: hidden;
        -moz-backface-visibility: hidden;
        -ms-backface-visibility: hidden;
        backface-visibility: hidden;

        -webkit-transition: -webkit-transform 0.75s, opacity 0.75s;
        -moz-transition: -moz-transform 0.75s, opacity 0.75s;
        -ms-transition: -ms-transform 0.75s, opacity 0.75s;
        transition: transform 0.75s, opacity 0.75s;
      }

      .clock span:before {
        opacity: 1;
        z-index: 1;
        content: attr(data-old);

        -webkit-transform-origin: 0 0;
        -moz-transform-origin: 0 0;
        -ms-transform-origin: 0 0;
        transform-origin: 0 0;

        -webkit-transform: translate3d(0, 0, 0) rotateX(0);
        -moz-transform: translate3d(0, 0, 0) rotateX(0);
        -ms-transform: translate3d(0, 0, 0) rotateX(0);
        transform: translate3d(0, 0, 0) rotateX(0);
      }

      .clock span:after {
        opacity: 0;
        z-index: 2;
        content: attr(data-now);

        -webkit-transform-origin: 0 100%;
        -moz-transform-origin: 0 100%;
        -ms-transform-origin: 0 100%;
        transform-origin: 0 100%;

        -webkit-transform: translate3d(0, -102.5%, 0) rotateX(90deg);
        -moz-transform: translate3d(0, -102.5%, 0) rotateX(90deg);
        -ms-transform: translate3d(0, -102.5%, 0) rotateX(90deg);
        transform: translate3d(0, -102.5%, 0) rotateX(90deg);
      }

      .clock .flip:before {
        opacity: 0;
        -webkit-transform: translate3d(0, 102.5%, 0) rotateX(-90deg);
        -moz-transform: translate3d(0, 102.5%, 0) rotateX(-90deg);
        -ms-transform: translate3d(0, 102.5%, 0) rotateX(-90deg);
        transform: translate3d(0, 102.5%, 0) rotateX(-90deg);
      }

      .clock .flip:after {
        opacity: 1;
        -webkit-transform: translate3d(0, 0, 0) rotateX(0);
        -moz-transform: translate3d(0, 0, 0) rotateX(0);
        -ms-transform: translate3d(0, 0, 0) rotateX(0);
        transform: translate3d(0, 0, 0) rotateX(0);
      }

      .footer {
        position: fixed;
        bottom: 0;
        left: 0;
        right: 0;
        padding: 1em;
        /* background: #e9e9e9; */
        color: #b9b9b9;
        font-size: 0.75em;
      }

      .footer a {
        color: #b9b9b9;
        text-decoration: none;
      }
    </style>
  </head>
  <body>
    <h1>we will be back soon</h1>
    <span class="clock"></span>
    <div class="footer">
      <a href="http://beian.miit.gov.cn/">浙ICP备2022019044号</a>
    </div>
    <!-- 以下js -->
    <script>
      var Clock = (function () {
        var exports = function (element) {
          this._element = element;
          var html = "";
          for (var i = 0; i < 6; i++) {
            html += "<span>&nbsp;</span>";
          }
          this._element.innerHTML = html;
          this._slots = this._element.getElementsByTagName("span");
          this._tick();
        };

        exports.prototype = {
          _tick: function () {
            var time = new Date();
            this._update(
              this._pad(time.getHours()) +
                this._pad(time.getMinutes()) +
                this._pad(time.getSeconds())
            );
            var self = this;
            setTimeout(function () {
              self._tick();
            }, 1000);
          },

          _pad: function (value) {
            return ("0" + value).slice(-2);
          },

          _update: function (timeString) {
            var i = 0,
              l = this._slots.length,
              value,
              slot,
              now;
            for (; i < l; i++) {
              value = timeString.charAt(i);
              slot = this._slots[i];
              now = slot.dataset.now;

              if (!now) {
                slot.dataset.now = value;
                slot.dataset.old = value;
                continue;
              }

              if (now !== value) {
                this._flip(slot, value);
              }
            }
          },

          _flip: function (slot, value) {
            // setup new state
            slot.classList.remove("flip");
            slot.dataset.old = slot.dataset.now;
            slot.dataset.now = value;

            // force dom reflow
            slot.offsetLeft;

            // start flippin
            slot.classList.add("flip");
          },
        };

        return exports;
      })();

      var i = 0,
        clocks = document.querySelectorAll(".clock"),
        l = clocks.length;
      for (; i < l; i++) {
        new Clock(clocks[i]);
      }
    </script>
  </body>
</html>
                               

Whois info of domain

Domain Name: 2MNH.COM
Registry Domain ID: 2568972638_DOMAIN_COM-VRSN
Registrar WHOIS Server: grs-whois.hichina.com
Registrar URL: http://wanwang.aliyun.com
Updated Date: 2024-10-17T13:47:49Z
Creation Date: 2020-10-29T12:09:53Z
Registry Expiry Date: 2025-10-29T12:09:53Z
Registrar: Alibaba Cloud Computing Ltd. d/b/a HiChina (www.net.cn)
Registrar IANA ID: 1599
Registrar Abuse Contact Email: [email protected]
Registrar Abuse Contact Phone: +86.95187
Domain Status: ok https://icann.org/epp#ok
Name Server: DNS25.HICHINA.COM
Name Server: DNS26.HICHINA.COM
DNSSEC: unsigned
URL of the ICANN Whois Inaccuracy Complaint Form: https://www.icann.org/wicf/
>>> Last update of whois database: 2025-05-07T10:54:28Z <<<
For more information on Whois status codes, please visit https://icann.org/epp
NOTICE: The expiration date displayed in this record is the date the
TERMS OF USE: You are not authorized to access or query our Whois
by the following terms of use: You agree that you may use this Data only
to: (1) allow, enable, or otherwise support the transmission of mass