Check server response of

Server response
NS records
Whois domain
Response headers
Request headers
Raw HTML code
200 OK - albld.com
HTTP Status: 200
User-Agent: Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; [email protected])
Date: Mon, 05 May 2025 10:43:12 GMT
Server: Apache
Last-Modified: Tue, 24 Dec 2024 04:30:14 GMT
Accept-Ranges: bytes
Content-Length: 8501
Connection: close
Content-Type: text/html

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: albld.com
Accept: */*
User-Agent: Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; [email protected])
<!DOCTYPE HTML>
<html lang="ar">
<head>
    <meta charset="UTF-8">
    <meta name="viewport" content="width=device-width, initial-scale=1.0">
    <meta name="description" content="اكتشف أفضل الهواتف الذكية بأحدث الإصدارات والعروض المميزة. متجرنا يوفر آيفون، سامسونج، وأكثر بأسعار تنافسية.">
 <meta name="keywords" content="هواتف ذكية, أفضل الهواتف الذكية, جوالات ذكية, أحدث الجوالات, شراء جوال, آيفون 16, آيفون 16 برو, آيفون 16 الوردي, آيفون 15, آيفون 14 برو ماكس, جوال آيفون, هواتف آيفون في السعودية, شركة أبل, أبل السعودية, سعر آيفون في السعودية, جوال سامسونج, سامسونج جالكسي, جالكسي S23, سامسونج جالكسي Z Flip, أفضل عروض سامسونج, هواتف سامسونج الجديدة, جوال شاومي, أفضل هواتف شاومي, جوال جوجل بكسل, جوجل بكسل 8, أفضل عروض الجوالات, عروض نون للجوالات, متجر نون للجوالات, شراء هاتف ذكي, أفضل أسعار الجوالات, أحدث هواتف 2024, OnePlus السعودية, هواتف هواوي, هواوي ميت 50, أسعار الجوالات في السعودية, عروض الجوالات بالسعودية, أفضل جوال للتصوير, هواتف بسعر مناسب, شراء جوالات أونلاين">
    <meta name="author" content="Six Digit">
    <title>متجر Six Digit - أحدث الجوالات الذكية</title>
    <script src="https://kit.fontawesome.com/a076d05399.js" crossorigin="anonymous"></script>
    <link href="https://fonts.googleapis.com/css2?family=Cairo:wght@400;600&display=swap" rel="stylesheet">
    <style>
        body {
            margin: 0;
            font-family: "Cairo", sans-serif;
            background-color: #f9f9f9;
        }

        header {
            display: flex;
            justify-content: center;
            align-items: center;
            padding: 20px;
            background-color: #222;
            color: #fff;
        }

        header h1 {
            font-size: 28px;
            margin: 0;
            display: flex;
            gap: 5px;
        }

        header h1 span {
            font-weight: bold;
        }

        header h1 .blue { color: #4285f4; }
        header h1 .red { color: #ea4335; }
        header h1 .yellow { color: #fbbc05; }
        header h1 .green { color: #34a853; }
        header h1 .light-blue { color: #4285f4; }
        header h1 .light-green { color: #34a853; }

        .hero {
            text-align: center;
            padding: 50px 20px;
            background: linear-gradient(to right, #4285f4, #34a853);
            color: #fff;
        }

        .hero h1 {
            font-size: 36px;
        }

        .hero p {
            font-size: 18px;
            margin: 20px 0;
        }

        .grid-container {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 20px;
            padding: 50px 20px;
            max-width: 1200px;
            margin: 0 auto;
        }

        .grid-item {
            background-color: #fff;
            box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
            border-radius: 10px;
            text-align: center;
            padding: 20px;
            transition: transform 0.3s, box-shadow 0.3s;
        }

        .grid-item:hover {
            transform: translateY(-5px);
            box-shadow: 0 6px 10px rgba(0, 0, 0, 0.15);
        }

        .grid-item h3 {
            font-size: 20px;
            margin: 15px 0;
            color: #333;
        }

        .grid-item a {
            display: inline-block;
            padding: 10px 20px;
            background-color: #4285f4;
            color: #fff;
            text-decoration: none;
            border-radius: 5px;
            font-size: 16px;
            transition: background-color 0.3s;
        }

        .grid-item a:hover {
            background-color: #2a65f1;
        }

        footer {
            background-color: #222;
            color: #fff;
            padding: 20px;
            border-top: 4px solid #fbbc05;
            text-align: center;
            font-size: 16px;
        }

        footer .six-digit {
            display: flex;
            justify-content: center;
            gap: 5px;
            font-size: 24px;
            margin-bottom: 15px;
        }

        footer .six-digit span {
            font-weight: bold;
        }

        footer .six-digit .blue { color: #4285f4; }
        footer .six-digit .red { color: #ea4335; }
        footer .six-digit .yellow { color: #fbbc05; }
        footer .six-digit .green { color: #34a853; }
        footer .six-digit .light-blue { color: #4285f4; }
        footer .six-digit .light-green { color: #34a853; }

        footer p {
            margin: 0;
        }

        footer .icons {
            display: flex;
            justify-content: center;
            gap: 30px;
            margin: 20px 0;
        }

        footer .icons a {
            color: #fbbc05;
            font-size: 24px;
            transition: color 0.3s, transform 0.3s;
        }

        footer .icons a:hover {
            color: #34a853;
            transform: scale(1.2);
        }
    </style>
</head>
<body>

<header>
    <h1>
        <span class="blue">S</span>
        <span class="red">i</span>
        <span class="yellow">x</span>
        <span class="light-blue">D</span>
        <span class="green">i</span>
        <span class="red">g</span>
        <span class="light-green">i</span>
        <span class="blue">t</span>
    </h1>
</header>

<div class="hero">
    <h1>أحدث الهواتف الذكية</h1>
    <p>تسوق الآن واستمتع بأفضل العروض والأسعار التنافسية.</p>
</div>

<section class="grid-container">
    <div class="grid-item">
        <h3>iPhone 16</h3>
        <a href="https://www.noon.com/saudi-ar/p-57271">تسوق الآن</a>
    </div>
    <div class="grid-item">
        <h3>iPhone 16 Pro</h3>
        <a href="https://www.noon.com/saudi-ar/p-57271">تسوق الآن</a>
    </div>
    <div class="grid-item">
        <h3>iPhone 16 Pink</h3>
        <a href="https://www.noon.com/saudi-ar/p-57271">تسوق الآن</a>
    </div>
    <div class="grid-item">
        <h3>Samsung Galaxy S23</h3>
        <a href="https://www.noon.com/saudi-ar/p-57271">تسوق الآن</a>
    </div>
    <div class="grid-item">
        <h3>Samsung Galaxy Z Flip</h3>
        <a href="https://www.noon.com/saudi-ar/p-57271">تسوق الآن</a>
    </div>
    <div class="grid-item">
        <h3>Samsung Galaxy Note 20</h3>
        <a href="https://www.noon.com/saudi-ar/p-57271">تسوق الآن</a>
    </div>
    <div class="grid-item">
        <h3>Google Pixel 8</h3>
        <a href="https://www.noon.com/saudi-ar/p-57271">تسوق الآن</a>
    </div>
    <div class="grid-item">
        <h3>OnePlus 11</h3>
        <a href="https://www.noon.com/saudi-ar/p-57271">تسوق الآن</a>
    </div>
    <div class="grid-item">
        <h3>Xiaomi Mi 13</h3>
        <a href="https://www.noon.com/saudi-ar/p-57271">تسوق الآن</a>
    </div>
</section>

<footer>
    <div class="six-digit">
        <span class="blue">S</span>
        <span class="red">i</span>
        <span class="yellow">x</span>
        <span class="light-blue">D</span>
        <span class="green">i</span>
        <span class="red">g</span>
        <span class="light-green">i</span>
        <span class="blue">t</span>
    </div>
    <p>جميع الحقوق محفوظة © 2024</p>
    <div class="icons">
        <a href="https://www.noon.com/saudi-ar/p-57271" target="_blank" title="المتجر">
            <i class="fas fa-store"></i>
        </a>
        <a href="https://wa.me/966500000000" target="_blank" title="واتساب">
            <i class="fab fa-whatsapp"></i>
        </a>
        <a href="#" title="حقوق النشر">
            <i class="fas fa-copyright"></i>
        </a>
    </div>
</footer>

</body>
</html>
                               

Whois info of domain

Domain Name: ALBLD.COM
Registry Domain ID: 174961086_DOMAIN_COM-VRSN
Registrar WHOIS Server: whois.godaddy.com
Registrar URL: http://www.godaddy.com
Updated Date: 2024-06-25T11:08:30Z
Creation Date: 2005-06-24T19:29:05Z
Registry Expiry Date: 2025-06-24T19:29:05Z
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: NS1.77UP.NET
Name Server: NS2.77UP.NET
DNSSEC: unsigned
URL of the ICANN Whois Inaccuracy Complaint Form: https://www.icann.org/wicf/
>>> Last update of whois database: 2025-05-05T10:43: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