Check server response of

Server response
NS records
Whois domain
Response headers
Request headers
Raw HTML code
301 Moved Permanently - ttstm.com
HTTP Status: 301
User-Agent: Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; [email protected])
Date: Sat, 10 May 2025 10:46:24 GMT
Content-Type: text/html
Content-Length: 167
Connection: keep-alive
Cache-Control: max-age=3600
Expires: Sat, 10 May 2025 11:46:24 GMT
Location: https://ttstm.com/
Set-Cookie: __cf_bm=Rt0vCDNf1tQ0GwtCyraxcSq8zjVI.FuICganoSl5o.Y-1746873984-1.0.1.1-4QTb09Keb6fgqd5wL.vxsW1o06CyuWBUCoCBTrHuq6.QmcLXhZJ.sTfOeorpE0g43wiEF3XT5q2hdipL274Xw1yj.yiYTS4QZzhGc6GGWiM; path=/; expires=Sat, 10-May-25 11:16:24 GMT; domain=.ttstm.com; HttpOnly
Server: cloudflare
CF-RAY: 93d8da43abbd8dcb-HEL
alt-svc: h3=":443"; ma=86400

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://ttstm.com/
HTTP Status: 200
User-Agent: Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; [email protected])
Date: Sat, 10 May 2025 10:46:24 GMT
Content-Type: text/html; charset=utf-8
Transfer-Encoding: chunked
Connection: keep-alive
last-modified: Tue, 04 Feb 2025 23:40:36 GMT
x-rgw-object-type: Normal
x-amz-request-id: tx00000cf2617855f0f820f-00681eba59-82557b56-ams3c
Cache-Control: public,max-age=10,s-maxage=86400
x-do-app-origin: 8e1d460f-17a4-4b31-94b5-2365a9610698
x-do-orig-status: 200
CF-Cache-Status: HIT
Accept-Ranges: bytes
Set-Cookie: __cf_bm=TDasotIe6P__eAny8eq44498GjjsFpF9yj1MxtXm8BY-1746873984-1.0.1.1-tdiONEz.1jzVpKIl9FoVqgCHQIfXI46n2X1Jj8yKXQb5JoVwCbjuNO2BTNJI9K8xV21v4JYjSJbVxIUgkrG1LNHd45n31VVTohbDv.w7Htg; path=/; expires=Sat, 10-May-25 11:16:24 GMT; domain=.ttstm.com; HttpOnly; Secure; SameSite=None
Server: cloudflare
CF-RAY: 93d8da43fb918d88-HEL
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: ttstm.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>TTSTM: To The Moon! 🚀</title>
    <link href="https://fonts.googleapis.com/css2?family=Orbitron:wght@700&family=Comic+Neue:wght@700&display=swap" rel="stylesheet">
    <style>
        :root {
            --neon-green: #00ff88;
            --neon-purple: #d600ff;
            --dark-space: #0a0a23;
        }

        body {
            margin: 0;
            background: var(--dark-space);
            color: white;
            font-family: 'Comic Neue', cursive;
            overflow-x: hidden;
        }

        .hero {
            min-height: 100vh;
            display: flex;
            flex-direction: column;
            align-items: center;
            justify-content: center;
            text-align: center;
            padding: 2rem;
            position: relative;
            overflow: hidden;
        }

        .rocket-container {
            position: absolute;
            width: 100%;
            height: 100%;
            pointer-events: none;
        }

        .rocket {
            position: absolute;
            left: -200px;
            animation: fly 6s infinite linear;
            font-size: 3rem;
        }
       

        .rocket:nth-child(2) {
            animation-duration: 10s;
        }

        .rocket:nth-child(3) {
            animation-duration: 7s;
        }

        @keyframes fly {
            0% { transform: translateX(0) translateY(0); }
            100% { transform: translateX(150vw) translateY(-50vh); }
        }

        h1 {
            font-family: 'Orbitron', sans-serif;
            font-size: 3.5rem;
            text-shadow: 0 0 10px var(--neon-green);
            color: var(--neon-green);
            margin: 2rem 0;
        }

        .logo {
            font-size: 4rem;
            filter: drop-shadow(0 0 15px var(--neon-purple));
            margin: 1rem;
            animation: bounce 1.5s infinite;
        }

        .logo-img {
            width: 250px;
            border-radius: 50%;
        }

        @keyframes spin {
            0% { transform: rotate(0deg); }
            100% { transform: rotate(360deg); }
        }

        .cta-button {
            background: linear-gradient(45deg, var(--neon-green), var(--neon-purple));
            padding: 1.5rem 3rem;
            border-radius: 50px;
            font-size: 1.5rem;
            text-decoration: none;
            color: black;
            font-weight: bold;
            transition: transform 0.3s, box-shadow 0.3s;
            margin: 2rem 0;
        }

        .cta-button:hover {
            transform: scale(1.1);
            box-shadow: 0 0 30px var(--neon-purple);
        }

        .content {
            padding: 4rem 2rem;
            text-align: center;
            border-top: 3px solid var(--neon-green);
            margin: 2rem;
            border-radius: 15px;
            background-color: #1b1b3a;
        }

        footer {
            text-align: center;
            padding: 2rem;
            background: #000;
        }

        .social-links {
            display: flex;
            justify-content: center;
            gap: 2rem;
            margin: 1rem 0;
        }

        .social-links a {
            color: var(--neon-green);
            text-decoration: none;
            transition: color 0.3s;
        }

        .social-links a:hover {
            color: var(--neon-purple);
        }

        @keyframes glow {
            from { text-shadow: 0 0 10px var(--neon-green); }
            to { text-shadow: 0 0 20px var(--neon-green), 0 0 30px var(--neon-green); }
        }

        @keyframes bounce {
            0%, 100% { transform: translateY(0); }
            50% { transform: translateY(-20px); }
        }

        @keyframes wiggle {
            0%, 100% { transform: rotate(0deg); }
            50% { transform: rotate(10deg); }
        }

        .contract-address {
            margin: 2rem 0;
            font-size: 1.3rem;
            background-color: #333;
            padding: 1rem;
            border-radius: 10px;
            color: var(--neon-green);
            text-align: center;
        }

        .contract-address input {
            background: transparent;
            border: none;
            color: white;
            font-size: 1.2rem;
            padding: 0.5rem;
            width: 80%;
            border-radius: 5px;
            margin-right: 1rem;
        }

        .copy-button {
            background: var(--neon-green);
            border: none;
            padding: 0.5rem 1rem;
            font-size: 1rem;
            color: black;
            font-weight: bold;
            border-radius: 5px;
            cursor: pointer;
            transition: background 0.3s ease;
        }

        .copy-button:hover {
            background: var(--neon-purple);
        }

        @media (max-width: 768px) {
            h1 { font-size: 2.5rem; }
            .logo { font-size: 3rem; }
            .cta-button { font-size: 1.2rem; }
        }

    </style>
</head>
<body>
    <section class="hero">
        <div class="rocket-container">
            <div class="rocket">🚀</div>
            <div class="rocket" style="animation-duration: 10s;">🚀</div>
            <div class="rocket" style="animation-duration: 7s;">🚀</div>

        </div>

        <div class="logo">
            <img src="https://i.ibb.co/cSyt0w7t/Flux-Dev-A-vibrant-highenergy-logo-for-the-TTSTM-meme-coin-The-2.jpg" alt="TTSTM Logo" class="logo-img">
        </div>
        <h1>TTSTM: This Token Sends To Mars</h1>
        <a href="https://pump.fun/coin/6oe2H52qRqVAqyG1B19gn1VEHBuNxB4sFXXp1Lscpump" class="cta-button" target="_blank">Get Your TTSTM Now on Pump.fun</a>
        
        <!-- Contract Address Section -->
        <div class="contract-address" style="display:none;">
            <span>Contract Address:</span>
            <input type="text" value="0xYourTokenContractAddressHere" id="contract-address" readonly>
            <button class="copy-button" onclick="copyAddress()">Copy</button>
        </div>
    </section>

    <main class="content">
        <h2>TTSTM – This Token Sends To Mars</h2>
        <p style="font-size: 1.5rem;">"Fueling degens to the moon, one frog at a time!" 🐸</p>
        <div style="font-size: 4rem; margin: 2rem;">🚀🌕🐸</div>
        <div style="font-size: 3rem; animation: wiggle 1s ease-in-out infinite;">We’re aiming for the moon, but a little moonlight on the way up wouldn’t hurt! 🚀💸</div>
    </main>

    <footer>
        <div class="social-links">
            <a href="https://x.com/TTSTMcoin" target="_blank">Twitter</a>
            <a href="https://t.me/TTSTMcoin" target="_blank">Telegram</a>
        </div>
        <p style="font-size: 0.8rem; color: #666;">For any issues please contact us at <a href="/cdn-cgi/l/email-protection" class="__cf_email__" data-cfemail="4c2f2322382d2f380c38383f3821622f2321">[email&#160;protected]</a> </p>
        <div style="margin-top: 1rem;">🐸🚀</div>
    </footer>

    <script data-cfasync="false" src="/cdn-cgi/scripts/5c5dd728/cloudflare-static/email-decode.min.js"></script><script>
        function copyAddress() {
            var copyText = document.getElementById("contract-address");
            copyText.select();
            document.execCommand("copy");
            alert("Contract address copied: " + copyText.value);
        }
    </script>
</body>
</html>
                               

Whois info of domain

Domain Name: TTSTM.COM
Registry Domain ID: 2956237118_DOMAIN_COM-VRSN
Registrar WHOIS Server: whois.godaddy.com
Registrar URL: http://www.godaddy.com
Updated Date: 2025-02-03T21:47:37Z
Creation Date: 2025-02-03T20:47:06Z
Registry Expiry Date: 2026-02-03T20:47:06Z
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.DIGITALOCEAN.COM
Name Server: NS2.DIGITALOCEAN.COM
Name Server: NS3.DIGITALOCEAN.COM
DNSSEC: unsigned
URL of the ICANN Whois Inaccuracy Complaint Form: https://www.icann.org/wicf/
>>> Last update of whois database: 2025-05-10T10:46:08Z <<<
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