Check server response of

Server response
NS records
Whois domain
Response headers
Request headers
Raw HTML code
200 OK - wbpex.com
HTTP Status: 200
User-Agent: Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; [email protected])
Server: nginx
Date: Sat, 17 May 2025 15:14:21 GMT
Content-Type: text/html
Transfer-Encoding: chunked
Connection: keep-alive
Vary: Accept-Encoding
Expires: Sat, 17 May 2025 16:14:21 GMT
Cache-Control: max-age=3600
Cache-Control: public

HTTP Code 200 OK

200 http status code 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: wbpex.com
Accept: */*
User-Agent: Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; [email protected])
<!DOCTYPE html>
<html>
  <head>
    <meta charset="UTF-8" />
    <meta name="viewport" content="width=device-width, initial-scale=1.0" />
    <script src="/punycode.min.js"></script>
    <title>wbpex.com has expired</title>
    <style>
      * {
        margin: 0;
        padding: 0;
      }

      body {
        background: #ccc;
        font-family: Arial, Helvetica, sans-serif;
        font-size: 11pt;
        text-align: center;
      }

      h1 {
        margin: 10px auto 20px 10px;
        color: #3498db;
      }

      p {
        display: inline-block;
        min-width: 200px;
        margin: auto 30px 10px 30px;
      }

      .container {
        position: relative;
        text-align: left;
        min-height: 200px;
        max-width: 800px;
        min-width: 450px;
        margin: 15% auto 0px auto;
        background: #ffffff;
        border-radius: 20px;
        padding: 20px;
        box-sizing: border-box;
      }

      img.logo {
        width: auto;
        max-height: 50px;
        margin-top: 30px;
        border: 0;
      }

      .logocont {
        text-align: center;
      }

      .langselect {
        position: absolute;
        top: 10px;
        right: 10px;
      }

      .langselect img {
        position: relative;
        width: auto;
        border: 0;
        margin: 2px;
        height: 15px;
      }

      .footer {
        color: #aaa;
        margin: 1em auto 0px auto;
        font-size: 8pt;
        text-align: center;
        min-width: 450px;
      }
    </style>
  </head>

  <body>
    <script>
      var h = {
        en: punycode.toUnicode('wbpex.com') + ' has expired',
        no: punycode.toUnicode('wbpex.com') + ' er utløpt',
        sv: punycode.toUnicode('wbpex.com') + ' är utlöpt',
        da: punycode.toUnicode('wbpex.com') + ' er udløbet',
      };

      var u = {
        en: "www.domainnameshop.com",
        no: "www.domeneshop.no",
        sv: "www.domainnameshop.com",
        da: "www.domainnameshop.com",
      };

      var m = {
        en: 'If you are the owner of this domain, <a href="https://www.domainnameshop.com/login">log in</a> so you can retrieve the invoice and renew the domain.',
        no: 'Hvis du eier dette domenet, <a href="https://www.domeneshop.no/login">logg inn</a> slik at du kan hente frem fakturaen og få fornyet domenet.',
        sv: 'Om du äger denna domän, <a href="http://www.domanshop.se/login">logga på</a> så du kan hämta ut fakturan och förnya domänen.',
        da: 'Hvis du er ejer af dette domæne, <a href="https://www.domainnameshop.com/login">log ind</a>, så du kan hente fakturaen og forny domænet.',
      };

      var l = (
        navigator.language ||
        navigator.userLanguage ||
        "en"
      ).toLowerCase();
      l =
        l.indexOf("-") > -1
          ? l.split("-")[1]
          : l === "nb" || l === "nn"
          ? "no"
          : l;

      var i = typeof SVGRect != "undefined" ? "svg" : "png";

      function q(s) {
        return document.getElementById(s);
      }
    </script>

    <div class="container">
      <h1 id="t">
        wbpex.com
        has expired
      </h1>
      <p id="m">
        If you are the owner of this domain,
        <a href="https://www.domainnameshop.com/login">log in</a> so you can
        retrieve the invoice and renew the domain.
      </p>
      <div class="logocont">
        <a id="l" href="https://www.domainnameshop.com/"
          ><img id="i" class="logo" src="/images/logo-en.png"
        /></a>
      </div>
      <div id="ls" class="langselect" style="display: none">
        <img
          src="/images/flag-no.png"
          alt="Norsk"
          title="Norsk"
          onclick="setLang('no')"
        /><img
          src="/images/flag-se.png"
          alt="Svenska"
          title="Svenska"
          onclick="setLang('sv')"
        /><img
          src="/images/flag-da.png"
          alt="Dansk"
          title="Dansk"
          onclick="setLang('da')"
        /><img
          src="/images/flag-en.png"
          alt="English"
          title="English"
          onclick="setLang('en')"
        />
      </div>
    </div>
    <div class="footer">
      <span>Domeneshop AS &copy; 2025</span>
      &middot;
      <span>Request ID: 74631a3925d25bd0eda4310174b1bcb5/parkedweb01 </span>
    </div>

    <script>
      q("ls").setAttribute("style", "");

      function setLang(s) {
        s = s in h ? s : "en";
        q("t").innerHTML = document.title = h[s];
        q("m").innerHTML = m[s];
        q("l").setAttribute("href", "https://" + u[s] + "/");
        q("i").setAttribute("src", "/images/logo-" + s + "." + i);
      }

      setLang(l);
    </script>
  </body>
</html>
                               

Whois info of domain

Domain Name: WBPEX.COM
Registry Domain ID: 2870431253_DOMAIN_COM-VRSN
Registrar WHOIS Server: whois.domainnameshop.com
Registrar URL: http://www.domainnameshop.com
Updated Date: 2025-04-23T07:52:42Z
Creation Date: 2024-04-08T05:45:04Z
Registry Expiry Date: 2026-04-08T05:45:04Z
Registrar: Domeneshop AS dba domainnameshop.com
Registrar IANA ID: 1001
Registrar Abuse Contact Email: [email protected]
Registrar Abuse Contact Phone: +47.22943333
Domain Status: clientTransferProhibited https://icann.org/epp#clientTransferProhibited
Name Server: NS1.EXPIREDDOMAIN.HYP.NET
Name Server: NS2.EXPIREDDOMAIN.HYP.NET
Name Server: NS3.EXPIREDDOMAIN.HYP.NET
DNSSEC: signedDelegation
DNSSEC DS Data: 10868 13 4 E7C3AD6DEA3E169D5888977FF33A7BA48E236306D4099A7A4F70B067C77711029EE26E86F72B7F7F58C2688E5625704D
DNSSEC DS Data: 10868 13 2 778977F9B4E132EFED8ADE3AAF7AD4F72664D4BAB8B447B16046575F6D15A60B
URL of the ICANN Whois Inaccuracy Complaint Form: https://www.icann.org/wicf/
>>> Last update of whois database: 2025-05-17T15:14:04Z <<<
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