Check server response of

Server response
NS records
Whois domain
Response headers
Request headers
Raw HTML code
301 Moved Permanently - elpip.com
HTTP Status: 301
User-Agent: Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; [email protected])
Date: Tue, 06 May 2025 12:21:28 GMT
Content-Type: text/html
Content-Length: 167
Connection: keep-alive
Cache-Control: max-age=3600
Expires: Tue, 06 May 2025 13:21:28 GMT
Location: https://elpip.com/
Report-To: {"endpoints":[{"url":"https:\/\/a.nel.cloudflare.com\/report\/v4?s=cGXXsvcx%2BRTJusjeH4Vab6QoaMvGmG4v27ZDGi7RnTp32TPBTUcLN5gPRTlesigLT5bzGeAC1PZmAZhbMrHj42hSBgsIgOTQKkRFA0%2BjxpThyxWLC0RA94OAxsFRcx2qQvbG8ShfRZ0%3D"}],"group":"cf-nel","max_age":604800}
NEL: {"success_fraction":0,"report_to":"cf-nel","max_age":604800}
Server: cloudflare
CF-RAY: 93b87006bae7d090-CPH
alt-svc: h3=":443"; ma=86400
server-timing: cfL4;desc="?proto=TCP&rtt=14934&min_rtt=14934&rtt_var=7467&sent=1&recv=3&lost=0&retrans=0&sent_bytes=0&recv_bytes=165&delivery_rate=0&cwnd=249&unsent_bytes=0&cid=0000000000000000&ts=0&x=0"

HTTP Code 301 Moved Permanently

301 Moved Permanently 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://elpip.com/
HTTP Status: 200
User-Agent: Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; [email protected])
Date: Tue, 06 May 2025 12:21:29 GMT
Content-Type: text/html; charset=UTF-8
Transfer-Encoding: chunked
Connection: keep-alive
Nel: {"report_to":"cf-nel","success_fraction":0.0,"max_age":604800}
Age: 0
Cache-Control: public,max-age=0,must-revalidate
Cache-Status: "Netlify Edge"; fwd=miss
Report-To: {"group":"cf-nel","max_age":604800,"endpoints":[{"url":"https://a.nel.cloudflare.com/report/v4?s=W%2F9Rsvpy6IA9gAB1to26P3%2BYxgkMsci7wUs%2FXOXTA2TqJ3BKIk7WipttbpNQRoBy6SmB0yw7pTBkjawAF33bstsdzZQIVPOvgu71HDRkKCsi83Jf6lkXln5NMXEVtKGBm%2BioICyAhLY%3D"}]}
Server: cloudflare
Vary: Accept-Encoding
X-Nf-Request-Id: 01JTJRPGAYFE16R80PGMXP6DDR
Cf-Cache-Status: DYNAMIC
CF-RAY: 93b870077daa630b-HAM
alt-svc: h3=":443"; ma=86400

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: elpip.com
Accept: */*
User-Agent: Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; [email protected])
<html lang="en">
<head>
  <title>El Pip ... premium marketing</title>
  <meta charset="utf-8">
  <meta name="description" content="El Pip ... premium marketing">
  <meta name="author" content="Lubo">
  <style>
    body {
      font-family: Arial, sans-serif;
      margin: 0;
      padding: 0;
      background-color: #f4f4f4;
      color: #333;
    }
    .container {
      max-width: 800px;
      margin: 0 auto;
      padding: 20px;
      text-align: center;
    }
    img {
      max-width: 100%;
      height: auto;
    }
    .video-container {
      display: flex;
      flex-wrap: wrap;
      justify-content: center;
      gap: 20px;
    }
    .video-container div {
      width: 400px;
    }
    h3 {
      font-size: 1.2em;
      margin: 10px 0;
    }
    .news-container {
      margin-top: 40px;
      text-align: left;
    }
    .news-item {
      margin-bottom: 20px;
      padding: 10px;
      background-color: #fff;
      border: 1px solid #ddd;
      border-radius: 5px;
    }
    .news-item h4 {
      margin: 0;
      font-size: 1.1em;
    }
  </style>
  <script>
    async function loadTrendingVideos() {
      const proxyUrl = 'https://api.rss2json.com/v1/api.json?rss_url=';
      const youtubeTrendingRss = 'https://www.youtube.com/feeds/videos.xml?playlist_id=PLrEnWoR732-BHrPp_Pm8_VleD68f9s14-'; // Example playlist
      const url = proxyUrl + encodeURIComponent(youtubeTrendingRss);

      try {
        const response = await fetch(url);
        const data = await response.json();
        const videoContainer = document.getElementById('video-container');
        videoContainer.innerHTML = '';

        data.items.slice(0, 5).forEach(item => { // Display top 5 trending videos
          const videoId = item.link.split('=')[1];
          const videoTitle = item.title;
          const videoElement = document.createElement('div');
          videoElement.innerHTML = `
            <h3>${videoTitle}</h3>
            <iframe width="100%" height="225" src="https://www.youtube.com/embed/${videoId}" frameborder="0" allowfullscreen></iframe>
          `;
          videoContainer.appendChild(videoElement);
        });
      } catch (error) {
        console.error('Error fetching YouTube videos:', error);
      }
    }

    async function loadNews() {
      const proxyUrl = 'https://api.rss2json.com/v1/api.json?rss_url=';
      const cnnRss = 'http://rss.cnn.com/rss/edition.rss'; // CNN RSS feed
      const bbcRss = 'http://feeds.bbci.co.uk/news/rss.xml'; // BBC RSS feed
      const urls = [cnnRss, bbcRss].map(url => proxyUrl + encodeURIComponent(url));

      try {
        const responses = await Promise.all(urls.map(url => fetch(url)));
        const newsContainer = document.getElementById('news-container');
        newsContainer.innerHTML = '';

        for (const response of responses) {
          const data = await response.json();
          data.items.slice(0, 10).forEach(item => { // Display top 10 news articles from each feed
            const newsElement = document.createElement('div');
            newsElement.classList.add('news-item');
            newsElement.innerHTML = `
              <h4><a href="${item.link}" target="_blank">${item.title}</a></h4>
              <p>${item.description}</p>
            `;
            newsContainer.appendChild(newsElement);
          });
        }
      } catch (error) {
        console.error('Error fetching news articles:', error);
      }
    }

    window.onload = () => {
      loadTrendingVideos();
      loadNews();
    };
  </script>
</head>
<body>
  <div class="container">
    <img src="elpip-marketing.jpg" alt="El Pip ... premium marketing" />
    <div id="video-container" class="video-container"></div>
    <img src="elpip-catfood.jpg" alt="El Pip ... premium catfood" />
    
    <div id="news-container" class="news-container"></div>
  </div>
</body>
</html>                               

Whois info of domain

Domain Name: ELPIP.COM
Registry Domain ID: 2599008678_DOMAIN_COM-VRSN
Registrar WHOIS Server: whois.cloudflare.com
Registrar URL: http://www.cloudflare.com
Updated Date: 2024-12-01T18:35:33Z
Creation Date: 2021-03-19T10:15:06Z
Registry Expiry Date: 2026-03-19T10:15:06Z
Registrar: Cloudflare, Inc.
Registrar IANA ID: 1910
Registrar Abuse Contact Email: [email protected]
Registrar Abuse Contact Phone: +1.6503198930
Domain Status: clientTransferProhibited https://icann.org/epp#clientTransferProhibited
Name Server: LADY.NS.CLOUDFLARE.COM
Name Server: LUKE.NS.CLOUDFLARE.COM
DNSSEC: signedDelegation
DNSSEC DS Data: 2371 13 2 FBDAFB2E8D1859A47B438FCDAD6FD50753A4E7E7529BF69FB3743682A311937C
URL of the ICANN Whois Inaccuracy Complaint Form: https://www.icann.org/wicf/
>>> Last update of whois database: 2025-05-06T12:21:21Z <<<
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