Check server response of

Server response
NS records
Whois domain
Response headers
Request headers
Raw HTML code
200 OK - sonx.com
HTTP Status: 200
User-Agent: Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; [email protected])
Date: Mon, 19 May 2025 21:16:15 GMT
Server: Apache
Upgrade: h2,h2c
Connection: Upgrade
Last-Modified: Wed, 27 Mar 2024 13:27:19 GMT
Accept-Ranges: bytes
Content-Length: 5524
Vary: Accept-Encoding
Content-Type: text/html

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: sonx.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"/>
    <title>SonX Rewards | Coming Soon</title>
    <meta content="SonX Rewards | Coming Soon" property="og:title"/>
    <meta content="SonX Rewards | Coming Soon" property="twitter:title"/>
    <meta property="og:site_name" content="SonX Rewards">
    
    <meta content="Like airmiles for culture" name="description"/>
    <meta content="Like airmiles for culture" property="og:description"/>
    <meta content="Like airmiles for culture" property="twitter:description"/>
    
    <meta content="https://sonx.com/assets/sonx-og-image.jpg" property="og:image" itemprop="image" />
    <meta content="https://sonx.com/assets/sonx-og-image.jpg" property="twitter:image" itemprop="image" />
    <link href="https://sonx.com/assets/sonx-icon-small.png" rel="shortcut icon" type="image/x-icon"/>
    <link href="https://sonx.com/assets/sonx-icon-large.png" rel="apple-touch-icon"/>
    
    <meta property="og:type" content="website"/>
    <meta content="summary_large_image" name="twitter:card"/>
    <meta content="width=device-width, initial-scale=1" name="viewport"/>
    
    <script async="" src="https://www.googletagmanager.com/gtag/js?id=G-V7NN3XGQGK"></script>
    <script type="text/javascript">window.dataLayer = window.dataLayer || [];function gtag(){dataLayer.push(arguments);}gtag('js', new Date());gtag('config', 'G-V7NN3XGQGK', {'anonymize_ip': false});</script><!-- Google Tag Manager -->
    <script>(function(w,d,s,l,i){w[l]=w[l]||[];w[l].push({'gtm.start':
    new Date().getTime(),event:'gtm.js'});var f=d.getElementsByTagName(s)[0],
    j=d.createElement(s),dl=l!='dataLayer'?'&l='+l:'';j.async=true;j.src=
    'https://www.googletagmanager.com/gtm.js?id='+i+dl;f.parentNode.insertBefore(j,f);
    })(window,document,'script','dataLayer','GTM-MST35D2');</script>
    
    <style>
        @font-face {
          font-family: 'Neue-montreal';
          src: url('https://uploads-ssl.webflow.com/63060c2fd4e5e6374d2a8ca4/630621d3f510ff7f96a8616b_NeueMontreal-Regular.woff2') format('woff2');
          font-weight: 400;
          font-style: normal;
          font-display: swap;
        }
        
        body {
          font-family: 'Neue-montreal';
          background: black;
          overflow: hidden;
          margin: 0;
          padding: 0;
        }
        
        .content {
          position: relative;
          background: transparent;
          display: flex;
          align-items: center;
          justify-content: center;
          flex-direction: column;
          margin: 0 auto;
          width: 80%;
          max-width: 500px;
          height: calc(100vh - 6rem);
          text-align: center;
          opacity: 0;
          padding: 3rem;
          color: white;
        }
        .content img {
          width: 100%;
          height: auto;
          display:block;
          border-radius: 5px;
          background: black;
          padding: 2rem 3rem 1rem;
        }
        .content div {
          background: black;
          padding: 0 3rem 2rem;
        }
        
        .box {
          position:absolute;
          color:black;
          transform: rotate(-45deg);
          background: black;
          border: 3px solid #8602eb;
          border-radius: 5px;
          width: 104px;
          height: 104px;
        }
        
        #grid {
          position: fixed;
          top: 0;
          left: 0;
          width: 100vw;
          height: 100vh;
          z-index: -1;
          opacity: 0.3;
        }
    </style>

</head>

<body>
    <div class="content">
      <img src="https://sonx.com/assets/sonx-logo.png" alt="SonX logo">
      
      <div>
        <p>We are working on something amazing. Back soon...</p>
      </div>
    </div>
    
    <div id="grid"></div>
      
    <script src="//cdnjs.cloudflare.com/ajax/libs/gsap/2.1.0/TweenMax.min.js"></script>
    <script src="https://cdnjs.cloudflare.com/ajax/libs/jquery/3.2.1/jquery.min.js"></script>
    
    <script>
        var w = window.innerWidth, 
        	  h = window.innerHeight, 
            vmax = w > h
              ? w*1.5
              : h*1.5;
        
        var cols = w > h
              ? w / 150
              : h / 150;
        
        TweenLite.set("#grid")
        var rows = cols;
        var grid = $("#grid");
        var tl = new TimelineMax({duration: 3});
        
        //build the grid
        for (var r = 0; r < rows; r++) {
          for (var c = 0; c < cols; c++) {
            var box = $("<div />", {class:"box green "+r+c}).appendTo(grid)
            TweenLite.set(box, {x:c * 150, y:r * 150})
          }
        }
        
        function complete() {
          var content = new TimelineMax();
          content.to(".content", 2.5, {opacity:1})
        }
        
        //now in version 2.1, it's super simple:
        tl.staggerFrom(
          ".box", 
          1, 
          {
            opacity:0, 
            scale:0, 
            stagger: {
              grid:"auto", 
              from:"start", 
              amount:1
            }
          }, 
          null, 
          null,
          complete
        )
    </script>
  
    <!-- Google tag (gtag.js) -->
    <script async src="https://www.googletagmanager.com/gtag/js?id=G-8EBSG351J4"></script>
    <script>
      window.dataLayer = window.dataLayer || [];
      function gtag(){dataLayer.push(arguments);}
      gtag('js', new Date());
      gtag('config', 'G-8EBSG351J4');
    </script>
  
</body>

</html>                               

Whois info of domain

Domain Name: SONX.COM
Registry Domain ID: 3963623_DOMAIN_COM-VRSN
Registrar WHOIS Server: whois.godaddy.com
Registrar URL: http://www.godaddy.com
Updated Date: 2023-12-28T09:59:33Z
Creation Date: 1999-02-28T05:00:00Z
Registry Expiry Date: 2028-08-31T03:59:59Z
Registrar: GoDaddy.com, LLC
Registrar IANA ID: 146
Registrar Abuse Contact Email: [email protected]
Registrar Abuse Contact Phone: 480-624-2505
Domain Status: clientDeleteProhibited https://icann.org/epp#clientDeleteProhibited
Domain Status: clientRenewProhibited https://icann.org/epp#clientRenewProhibited
Domain Status: clientTransferProhibited https://icann.org/epp#clientTransferProhibited
Domain Status: clientUpdateProhibited https://icann.org/epp#clientUpdateProhibited
Name Server: NS51.DOMAINCONTROL.COM
Name Server: NS52.DOMAINCONTROL.COM
DNSSEC: unsigned
URL of the ICANN Whois Inaccuracy Complaint Form: https://www.icann.org/wicf/
>>> Last update of whois database: 2025-05-19T21:16: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