Check server response of

Server response
NS records
Whois domain
Response headers
Request headers
Raw HTML code
301 Moved Permanently - wlib.com
HTTP Status: 301
User-Agent: Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; [email protected])
Date: Thu, 15 May 2025 08:44:14 GMT
Content-Type: text/html; charset=utf-8
Content-Length: 63
Connection: keep-alive
Location: https://www.laexitosa987.com
Server: ip-100-74-4-218.eu-west-2.compute.internal
Vary: Accept-Encoding
X-Request-Id: 3e64743b-7f64-460f-a432-ff36e5c62c56

HTTP Code 301 Moved Permanently

301 http status code means that the requested resource has been permanently moved to a new URL. All future requests should use the new address.

When is Code 301 used?

  • When changing a website domain
  • When modifying URL structures
  • When setting up redirects for SEO

What does Code 301 mean for the user?

The browser will automatically redirect the user to the new address, and search engines will update their indexes.

200 OK - https://www.laexitosa987.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 08:44:15 GMT
Content-Type: text/html
Content-Length: 7514
Connection: keep-alive
Content-MD5: IKgwD/K6Ha8jnVIuxIVGgQ==
Last-Modified: Tue, 11 Mar 2025 15:29:39 GMT
ETag: "0x8DD60B18A12B680"
x-ms-request-id: 6ce237da-701e-0039-4b75-c5b6b6000000
x-ms-version: 2018-03-28
x-azure-ref: 20250515T084414Z-176cf9dd5b7mkqz6hC1AMSdz0n0000000c20000000006ae5
X-Cache: CONFIG_NOCACHE
Accept-Ranges: bytes

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: wlib.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>LA EXITOSA 98.7FM 1190AM NUEVA YORK</title>
    <link href="https://fonts.googleapis.com/css2?family=Quicksand:wght@400;700&display=swap" rel="stylesheet">
    <script src="https://kit.fontawesome.com/a076d05399.js" crossorigin="anonymous"></script>
    <style>
        body {
            margin: 0;
            display: flex;
            justify-content: center;
            align-items: center;
            flex-direction: column;
            min-height: 100vh;
            background-color: black;
            font-family: 'Quicksand', sans-serif;
        }
        .header {
            width: 100%;
            background-color: white;
            text-align: center;
            border-bottom: 5px solid #d31087;
            padding: 10px 0;
            margin-bottom: 10px;
        }
        .header img {
            height: 150px;
        }
        .container {
            width: 90vw;
            max-width: 925px;
            background-color: white;
            border-radius: 20px;
            display: flex;
            flex-direction: column;
            align-items: center;
            padding: 30px;
            overflow: hidden;
        }
        .carousel {
            width: 100%;
            margin-left: 10%;
            margin-right: 10%;
            padding: 20px;
            aspect-ratio: 16 / 9; /* Maintain consistent height regardless of width */
            position: relative;
            overflow: hidden; /* Clips images to rounded corners */
            border-radius: 15px; /* Ensures container has rounded corners */
            display: flex;
            justify-content: center;
            align-items: center;
            background-color: white; /* Fallback for empty space */
        }
        .carousel img {
            width: 100%;
            height: 100%;
            object-fit: contain; /* Ensures the full image is always visible */
            position: absolute; /* Stack images on top of each other */
            top: 0;
            left: 0;
            opacity: 0;
            transition: opacity 1s ease-in-out;
            border-radius: 15px; /* Ensures images have rounded corners */
        }
        .carousel img.active {
            opacity: 1;
        }
        .content-wrapper {
            display: flex;
            flex-direction: column;
            align-items: center;
            width: 100%;
            padding-top: 15px;
        }
        .listen-button {
            width: 60%;
            max-width: 250px;
            padding: 12px;
            background-color: #d31087;
            color: white;
            font-size: 1.2em;
            font-weight: bold;
            text-align: center;
            border: none;
            border-radius: 50px;
            cursor: pointer;
            text-decoration: none;
            text-transform: uppercase;
            font-family: 'Quicksand', sans-serif;
        }
        .social-icons {
            display: flex;
            justify-content: center;
            gap: 12px;
            padding-top: 10px;
        }
        .social-icons a img {
            height: 36px;
        }
        .footer {
            width: 100%;
            background-color: white;
            padding: 20px;
            text-align: center;
            border-top: 5px solid #d31087;
            font-size: 0.9em;
            margin-top: 10px;
        }

        /* Responsive Styles for Mobile */
        @media (max-width: 768px) {
            .container {
                width: 95vw;
                padding: 15px;
            }
            .carousel {
                aspect-ratio: 4 / 3; /* Adjust aspect ratio for smaller screens */
            }
            .content-wrapper {
                padding-top: 10px;
            }
            .listen-button {
                width: 70%;
                font-size: 1em;
                padding: 10px;
            }
            .social-icons {
                gap: 10px;
                padding-top: 8px;
            }
            .social-icons a img {
                height: 30px;
            }
        }
    </style>
    <script>
        document.addEventListener("DOMContentLoaded", function () {
            let images = document.querySelectorAll(".carousel img");
            let index = 0;
            
            function changeImage() {
                images.forEach(img => img.classList.remove("active"));
                images[index].classList.add("active");
                index = (index + 1) % images.length;
            }

            changeImage(); // Show first image immediately
            setInterval(changeImage, 2000); // Cycle through images every 2 seconds
        });
    </script>
</head>
<body>
    <div class="header">
        <img src="images/logo.png" alt="Station Logo">
    </div>
    <div class="container">
        <div class="carousel">
            <img src="images/image1-desktop.jpg" alt="Image 1" class="active">
            <img src="images/image2-desktop.jpg" alt="Image 2">
            <img src="images/image3-desktop.jpg" alt="Image 3">
            <img src="images/image4-desktop.jpg" alt="Image 4">
            <img src="images/image5-desktop.jpg" alt="Image 5">
        </div>
        <div class="content-wrapper">
            <a href="https://live365.com/station/La-Exitosa-98-7-a39614" class="listen-button" target="_blank">Listen Live</a>
            <div class="social-icons">
                <a href="https://www.facebook.com/people/La-Exitosa-987/61571841927837/" target="_blank">
                    <img src="images/FB.png" alt="Facebook">
                </a>
                <a href="https://www.instagram.com/laexitosa987" target="_blank">
                    <img src="images/IN.png" alt="Instagram">
                </a>
                <a href="https://www.tiktok.com/@laexitosa987" target="_blank">
                    <img src="images/TT.png" alt="TikTok">
                </a>
                <a href="https://x.com/LaExitosa987/status/1880677296526574035" target="_blank">
                    <img src="images/X.png" alt="X">
                </a>
                <a href="https://www.youtube.com/@laexitosa987" target="_blank">
                    <img src="images/YT.png" alt="YouTube">
                </a>
            </div>
        </div>
    </div>
    <div class="footer">
        <p><strong>FCC Applications - Last updated February 1, 2022</strong></p>
        <p>On February 1, 2022, Emmis New York Radio License LLC, licensee of WEPN-FM, 98.7 FM, New York, New York, filed an application with the Federal Communications Commission for renewal of its broadcast license. Members of the public wishing to view this application or obtain information about how to file comments and petitions on the application can visit <a href="https://publicfiles.fcc.gov/fm-profile/WEPN-FM/applications-and-related-materials">https://publicfiles.fcc.gov/fm-profile/WEPN-FM/applications-and-related-materials</a> or <a href="https://publicfiles.fcc.gov/am-profile/wlib/applications-and-related-materials">https://publicfiles.fcc.gov/am-profile/wlib/applications-and-related-materials</a></p>
													<p><a href="https://publicfiles.fcc.gov/fm-profile/WEPN-FM">WEPN-FM Public File</a> | <a href="https://publicfiles.fcc.gov/am-profile/wlib">WLIB-AM Public File</a></p>
        <p>© 2025 Emmis Corporation</p>
    </div>
</body>
</html>
                               

Whois info of domain

Domain Name: WLIB.COM
Registry Domain ID: 3742_DOMAIN_COM-VRSN
Registrar WHOIS Server: whois.godaddy.com
Registrar URL: http://www.godaddy.com
Updated Date: 2023-11-22T12:14:54Z
Creation Date: 1995-11-22T05:00:00Z
Registry Expiry Date: 2025-11-21T05:00:00Z
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: PDNS07.DOMAINCONTROL.COM
Name Server: PDNS08.DOMAINCONTROL.COM
DNSSEC: unsigned
URL of the ICANN Whois Inaccuracy Complaint Form: https://www.icann.org/wicf/
>>> Last update of whois database: 2025-05-15T08:43:59Z <<<
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