Check server response of

Server response
NS records
Whois domain
Response headers
Request headers
Raw HTML code
200 OK - uhrey.com
HTTP Status: 200
User-Agent: Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; [email protected])
Server: nginx
Date: Sun, 18 May 2025 02:31:02 GMT
Content-Type: text/html; charset=UTF-8
Content-Length: 6674
expires: Wed, 11 Jan 1984 05:00:00 GMT
cache-control: no-cache; private
access-control-allow-origin: *

HTTP Code 200 OK

http status code 200 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: uhrey.com
Accept: */*
User-Agent: Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; [email protected])
<!DOCTYPE html>

<html lang="en-US">
    <head>
    	<meta charset="UTF-8">
    	<meta name="viewport" content="width=device-width, initial-scale=1">

        <!-- SEO -->
<title>UHREY</title><meta name="description" content="One-of-a-kind seamless high-resolution pattern designs ideal for fashion, home decor, wallpaper, packaging, print-on-demand, and more."/>
<!-- og meta for facebook, googleplus -->
<meta property="og:title" content="UHREY"/>
<meta property="og:description" content="One-of-a-kind seamless high-resolution pattern designs ideal for fashion, home decor, wallpaper, packaging, print-on-demand, and more."/>
<meta property="og:url" content="https://uhrey.com"/>
<meta property="og:type" content="website" />
<meta property="og:image" content=""/>

<!-- twitter meta -->
<meta name="twitter:card" content="summary_large_image"/>
<meta name="twitter:title" content="UHREY"/>
<meta name="twitter:description" content="One-of-a-kind seamless high-resolution pattern designs ideal for fashion, home decor, wallpaper, packaging, print-on-demand, and more."/>
<meta name="twitter:url" content="https://uhrey.com"/>
<meta name="twitter:image" content=""/>

<link rel="stylesheet" href="http://uhrey.com/wp-content/plugins/cmp-coming-soon-maintenance/themes/hardwork/style.css?v=4.1.10" type="text/css" media="all">
<link rel="stylesheet" href="http://uhrey.com/wp-content/plugins/cmp-coming-soon-maintenance/css/animate.min.css">
<link href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/5.14.0/css/all.min.css" rel="stylesheet" >
<link href="https://fonts.googleapis.com/css?family=Playfair+Display:700%7CMontserrat:400,700,400&amp;subset=latin-ext,cyrillic,latin,vietnamese,cyrillic-ext" rel="stylesheet">


        <style>
            body,input {font-family:'Montserrat', 'sans-serif';color:#ffffff;}
                            .social-list {background-color: rgba(0,0,0,0.4);}
                            a {color:#ffffff;}
            h1,h2,h3,h4,h5,h6 {font-family:'Playfair Display', 'sans-serif';}
            body {font-size:17px; letter-spacing: 0px; font-weight:400;; }
            h1:not(.text-logo),h2, h3,h4,h5,h6,.text-logo-wrapper {font-size:2.3529411764706em;letter-spacing: 0px; font-weight:700;font-style: normal;; }
            h1 {font-weight:700;font-style: normal;;}
        </style>

        

<style>
    .wp-video {margin: 0 auto;}
    .wp-video-shortcode {max-width: 100%;}
    .grecaptcha-badge {display: none!important;}
    .text-logo {display: inline-block;}
    #gdpr-checkbox {-webkit-appearance: checkbox;-moz-appearance: checkbox;width: initial;height: initial;}
    #counter.expired {display: none; }
    input, button {
        box-shadow: inset 0 0 0 0 !important;
        -webkit-box-shadow: inset 0 0 0 0 !important;
        -webkit-appearance: none;
        outline: none;
    }
</style>




    </head>


    <body id="body">
        <div id="background-wrapper">

         <div id="background-image" class="color loaded" style="background-color:#000000"></div>
        </div>

        
        <section class="section section-body">
            <div class="logo-wrapper image"><a href="https://uhrey.com" style="text-decoration:none"><img src="https://uhrey.com/wp-content/uploads/2023/07/Uhrey-Logo-21.png" class="graphic-logo" alt="logo"></a></div>         
         </section>
        
    <!-- Fade in background image after load -->
    <script>
        window.addEventListener("load",function(event) {
            init();
        });

        function init(){

            var image = document.getElementById('background-image');
            var body = document.getElementById('body');
            
            if ( image === null ) {
                image = document.getElementById('body');
            } 

            if ( image != null ) {
                if ( image.className !== 'image-unsplash') {
                    image.classList.add('loaded');
                    body.classList.add('loaded');
                }
            }

                    }
    </script>

    
    <script>
        /* Subscribe form script */
        var ajaxWpUrl = 'https://uhrey.com/wp-admin/admin-ajax.php';
        var {pathname} = new URL(ajaxWpUrl);
        var ajaxurl = `${location.protocol}//${location.hostname}${pathname}`;
        var security = '87ad593a7f';
        var msg = '';
        subForm = function( form, resultElement, emailInput, firstnameInput, lastnameInput, token = '' ) {
            if ( emailInput.value !== '' ) {
                const firstname = firstnameInput === null ? '' : firstnameInput.value;
                const lastname = lastnameInput === null ? '' : lastnameInput.value;

                fetch( ajaxurl, {
                    method: 'POST',
                    headers: {
                        'Content-Type': 'application/x-www-form-urlencoded; charset=utf-8',
                        'Access-Control-Allow-Origin': '*',
                    },
                    body: `action=niteo_subscribe&ajax=true&form_honeypot=&email=${ encodeURIComponent(emailInput.value) }&firstname=${ encodeURIComponent(firstname) }&lastname=${ encodeURIComponent(lastname) }&security=${ security }&token=${ token }`,
                    credentials: 'same-origin'
                } )
                .then( (res) => {
                    return res.json();
                } )
                .then( (data) => {
                    resultElement.innerHTML = data.message; // Display the result inside result element.
                    form.classList.add('-subscribed');
                    if (data.status == 1) {
                        form.classList.remove('-subscribe-failed');
                        form.classList.add('-subscribe-successful');
                        emailInput.value = '';
                        firstnameInput ? firstnameInput.value = '' : null;
                        lastnameInput ? lastnameInput.value = '' : null;
                        
                    } else {
                        form.classList.add('-subscribe-failed');
                    }
                } )
                .catch(function(error) { console.log(error.message); });

            } else {
                resultElement.innerHTML = 'Oops! Email is empty.';
            }
        }
    </script>

<!-- Build by CMP – Coming Soon Maintenance Plugin by NiteoThemes -->
<!-- Visit plugin page https://wordpress.org/plugins/cmp-coming-soon-maintenance/ -->
<!-- More CMP Themes on https://niteothemes.com -->
    </body>

</html>
                               

Whois info of domain

Domain Name: UHREY.COM
Registry Domain ID: 2751304077_DOMAIN_COM-VRSN
Registrar WHOIS Server: whois.namecheap.com
Registrar URL: http://www.namecheap.com
Updated Date: 2024-12-18T09:53:00Z
Creation Date: 2023-01-14T15:23:00Z
Registry Expiry Date: 2026-01-14T15:23:00Z
Registrar: NameCheap, Inc.
Registrar IANA ID: 1068
Registrar Abuse Contact Email: [email protected]
Registrar Abuse Contact Phone: +1.6613102107
Domain Status: clientTransferProhibited https://icann.org/epp#clientTransferProhibited
Name Server: NS1.HOSTING-SERVERS.COM.AU
Name Server: NS2.HOSTING-SERVERS.COM.AU
Name Server: NS3.HOSTING-SERVERS.COM.AU
DNSSEC: unsigned
URL of the ICANN Whois Inaccuracy Complaint Form: https://www.icann.org/wicf/
>>> Last update of whois database: 2025-05-18T02:30:54Z <<<
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