Check server response of

Server response
NS records
Whois domain
Response headers
Request headers
Raw HTML code
200 OK - oufi.com
HTTP Status: 200
User-Agent: Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; [email protected])
Date: Thu, 15 May 2025 18:09:19 GMT
Content-Type: text/html
Transfer-Encoding: chunked
Connection: keep-alive
Last-Modified: Mon, 31 Mar 2025 12:00:25 GMT
Accept-Ranges: bytes
cf-cache-status: DYNAMIC
Report-To: {"endpoints":[{"url":"https:\/\/a.nel.cloudflare.com\/report\/v4?s=8WpZgG3ERwvkK6UPZAH1bfaL6wR9FXUxNl6biKWul%2BAPB535bPVslYorIoOrk7Byn0ExFhDL7sbpQGe%2FDpqGAL0xj9SHx0nLFiNh%2B13OcNfyEyalqtNwmxffyOuSutYl8A9dAeZjyQ%3D%3D"}],"group":"cf-nel","max_age":604800}
NEL: {"success_fraction":0,"report_to":"cf-nel","max_age":604800}
Server: cloudflare
CF-RAY: 940495f15e9c62d8-HAM
alt-svc: h3=":443"; ma=86400
server-timing: cfL4;desc="?proto=TCP&rtt=21833&min_rtt=21833&rtt_var=10916&sent=1&recv=3&lost=0&retrans=0&sent_bytes=0&recv_bytes=164&delivery_rate=0&cwnd=249&unsent_bytes=0&cid=0000000000000000&ts=0&x=0"

HTTP Code 200 OK

200 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: oufi.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">
  <title>OuFi | Outlook Finance</title>
  <link rel="icon" href="images/favicon.svg" type="image/svg+xml">
  <style>
    /* Reset margin and padding */
    * {
      margin: 0;
      padding: 0;
      box-sizing: border-box;
    }

    /* Set the body to fill the entire screen */
    body, html {
      height: 100%;
      font-family: Arial, sans-serif;
      display: flex;
      align-items: center;
      justify-content: center;
      background-color: #f4f4f4;
      color: #333;
      overflow-x: hidden;
      flex-direction: column;
    }

    /* Header styling */
    header {
      position: fixed;
      top: 0;
      width: 100%;
      display: flex;
      justify-content: space-between;
      align-items: center;
      padding: 20px;
      z-index: 10;
      background-color: transparent;
    }

    /* Hamburger button styling */
    .hamburger {
      width: 30px;
      height: 30px;
      cursor: pointer;
    }

    /* Hamburger bar styling */
    .hamburger .bar {
      width: 100%;
      height: 4px;
      background-color: #333; /* Dark color by default */
      margin: 5px 0;
      transition: 0.3s;
    }

    /* Favicon styling */
    .favicon {
      width: 50px;
      height: 50px;
      background-image: url('images/favicon.svg');
      background-size: contain;
      background-repeat: no-repeat;
    }

    /* Change hamburger bars to light color when menu is open */
    .hamburger.open .bar {
      background-color: #f4f4f4; /* Light color for contrast */
    }

    /* Sidebar menu styling */
    .sidebar {
      position: fixed;
      top: 0;
      right: -250px;
      height: 100%;
      width: 250px;
      background-color: #333;
      color: #fff;
      padding-top: 60px;
      text-align: center;
      transition: 0.3s;
    }

    /* Sidebar links styling */
    .sidebar a {
      display: block;
      padding: 15px;
      font-size: 1.2rem;
      color: #fff;
      text-decoration: none;
      transition: 0.3s;
    }

    .sidebar a:hover {
      background-color: #444;
    }

    /* Open sidebar animation */
    .sidebar.open {
      right: 0;
    }

    /* Transform bars when open */
    .hamburger.open .bar:nth-child(1) {
      transform: rotate(45deg) translate(5px, 5px);
    }
    .hamburger.open .bar:nth-child(2) {
      opacity: 0;
    }
    .hamburger.open .bar:nth-child(3) {
      transform: rotate(-45deg) translate(6px, -6px);
    }

    /* Center content */
    .center-content {
      text-align: center;
      margin-top: -70px; /* Added padding to offset header height */
    }

    h1 {
      font-size: 3rem;
      margin-bottom: 0.5rem;
    }

    h2 {
      font-size: 1.5rem;
      font-weight: 300;
      color: #555;
    }

    /* Responsive adjustments */
    @media (max-width: 600px) {
      h1 {
        font-size: 2rem;
      }

      h2 {
        font-size: 1.2rem;
      }
    }

    /* Footer styling */
    footer {
      position: fixed;
      bottom: 0;
      width: 100%;
      text-align: center;
      padding: 10px;
      background-color: transparent;
      color: #333;
    }

    /* Footer text styling */
    .footer-text {
      font-family: 'Arial', sans-serif; /* Default font, you can change this */
      font-size: 0.9rem; /* Default font size, adjust as needed */
      color: #333; /* Default text color, change as needed */
    }
  </style>
</head>
<body>
  <!-- Header with Hamburger button and Favicon -->
  <header>
    <!-- Favicon in the top left corner -->
    <div class="favicon"></div>

    <!-- Hamburger button -->
    <div class="hamburger" onclick="toggleMenu()">
      <div class="bar"></div>
      <div class="bar"></div>
      <div class="bar"></div>
    </div>
  </header>

  <!-- Sidebar menu -->
  <div class="sidebar" id="sidebarMenu">
    <a href="/">Home</a>
    <a href="/contactus">Contact Us</a>
    <a href="/termsofservice">Terms of Service</a>
    <a href="/privacypolicy">Privacy Policy</a>
  </div>

  <!-- Main content -->
  <div class="center-content">
    <h1>Outlook Finance</h1>
    <h2>Bookkeeping in Microsoft Outlook</h2>
  </div>

  <!-- Footer -->
  <footer>
    <p class="footer-text">© 2025 Busier Inc DBA OuFi</p>
  </footer>

  <script>
    // Toggle sidebar menu open/close
    function toggleMenu() {
      const sidebar = document.getElementById('sidebarMenu');
      const hamburger = document.querySelector('.hamburger');
      sidebar.classList.toggle('open');
      hamburger.classList.toggle('open');
    }
  </script>
</body>
</html>
                               

Whois info of domain

Domain Name: OUFI.COM
Registry Domain ID: 19467162_DOMAIN_COM-VRSN
Registrar WHOIS Server: whois-service.virtualcloud.co
Registrar URL: http://sav.com
Updated Date: 2025-05-14T05:59:47Z
Creation Date: 2000-02-09T10:17:06Z
Registry Expiry Date: 2029-02-09T10:17:05Z
Registrar: Sav.com, LLC
Registrar IANA ID: 609
Registrar Abuse Contact Email: [email protected]
Registrar Abuse Contact Phone: +1.8885808790
Domain Status: clientTransferProhibited https://icann.org/epp#clientTransferProhibited
Name Server: AUGUSTUS.NS.CLOUDFLARE.COM
Name Server: LAURA.NS.CLOUDFLARE.COM
DNSSEC: unsigned
URL of the ICANN Whois Inaccuracy Complaint Form: https://www.icann.org/wicf/
>>> Last update of whois database: 2025-05-15T18:09:12Z <<<
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