Check server response of

Server response
NS records
Whois domain
Response headers
Request headers
Raw HTML code
301 Moved Permanently - 5ebot.com
HTTP Status: 301
User-Agent: Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; [email protected])
Server: nginx/1.18.0 (Ubuntu)
Date: Fri, 16 May 2025 01:16:13 GMT
Content-Type: text/html
Content-Length: 178
Connection: keep-alive
Location: https://5ebot.com/

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://5ebot.com/
HTTP Status: 200
User-Agent: Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; [email protected])
Server: nginx/1.18.0 (Ubuntu)
Date: Fri, 16 May 2025 01:16:13 GMT
Content-Type: text/html; charset=UTF-8
Content-Length: 19437
Connection: keep-alive
X-Powered-By: Express
Accept-Ranges: bytes
Cache-Control: public, max-age=0
Last-Modified: Mon, 30 Dec 2024 20:23:39 GMT
ETag: W/"4bed-194193d1015"

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: 5ebot.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>5e-Bot</title>
    <meta
      name="description"
      content="Roll Dice and Find Resources for Dungeons & Dragons 5e"
    />
    <meta property="og:type" content="website" />
    <meta property="og:title" content="5e-Bot | Index" />
    <meta
      property="og:description"
      content="Roll Dice and Find Resources for Dungeons & Dragons 5e"
    />
    <meta
      property="og:image"
      content="https://5ebot./com/assets/token_dragon_green_og.png"
    />
    <meta property="og:url" content="https://5ebot.com/" />
    <meta property="og:site_name" content="5e-Bot" />
    <link
      rel="icon"
      type="image/x-icon"
      href="./assets/favicon.ico"
      sizes="16x16"
    />
    <link
      rel="icon"
      type="image/x-icon"
      href="./assets/favicon.ico"
      sizes="32x32"
    />

    <link rel="stylesheet" href="./style.css" />
    <script src="./index.js" defer></script>
  </head>
  <!-- Google tag (gtag.js) -->
  <script
    async
    src="https://www.googletagmanager.com/gtag/js?id=G-44Y9FN44HM"
  ></script>
  <script>
    window.dataLayer = window.dataLayer || [];
    function gtag() {
      dataLayer.push(arguments);
    }
    gtag("js", new Date());

    gtag("config", "G-44Y9FN44HM");
  </script>
  <body>
    <div class="container">
      <header>
        <img
          src="./assets/token_dragon_green.webp"
          alt=""
          width="100px"
          height="100px"
        />
        <h1>5e-Bot</h1>
      </header>
      <main>
        <h3 class="tagline">
          Roll Dice and Find Resources for Dungeons & Dragons 5e
        </h3>
        <br />
        <article>
          <p class="indented">
            This bot is designed to search for resources within the
            Dungeons&Dragons official 5th edition SRD. Such resources include:
            spells, items, monsters and class-features. The bot also has a dice
            rolling command which supports modifiers and an initiative tracker. This is currently a free service and if you would be so kind as to help maintain the existence of this useful bot you can donate at this link: <a href="https://buy.stripe.com/9AQ6q60gqelL3Xq8ww">SUPPORT 5E-BOT</a>
          </p>
        </article>
        <br />
        <div class="invite-btn-container">
          <div class="invite-btn" onclick="handleInvite()">
            <h3>Invite</h3>
          </div>
        </div>
        <article>
          <h2><u>Commands</u></h2>
          <h3>
            <code
              ><div class="command" id="command-roll">
                /roll &lt;input&gt;
              </div></code
            >
          </h3>
          <div class="ml-p">
            <div>The command expects a text input in the format:</div>
            <code>[number of dice]</code>
            <p class="special-char">d</p>
            <code>[dice sides]</code>
            <p class="special-char">+</p>
            <code>[modifier]</code>.
            <br />
            <ul>
              <li>
                <code>[number of dice]</code>: Specifies how many dice to roll.
              </li>
              <li>
                <code>[dice sides]</code>: Represents the number of sides on the
                dice.
              </li>
              <li>
                <code>[modifier]</code>: (Optional) A number that's added to the
                total result of the dice rolls. If multiple modifiers are given,
                they are all added.
              </li>
            </ul>
            <br />
            <h3>Example</h3>
            <p class="ml-p">
              If a user inputs <code>2d6+3</code>, the command will simulate
              rolling two 6-sided dice and then add a modifier of 3 to the
              total.
            </p>

            <h3>Command Output</h3>
            <p class="ml-p">
              The bot will display each individual dice roll and highlight any
              critical rolls (when the dice rolls its highest number). It will
              then provide the combined total of all the dice rolls plus any
              modifiers.
            </p>
            <p class="ml-p">For our example (<code>2d6+3</code>):</p>
            <blockquote class="ml-p">
              The bot might respond with:<br />
              <code>
                Input: 2d6+3<br />
                Roll 1: 4<br />
                Roll 2: 6 - CRITICAL<br />
                TOTAL = 13<br />
              </code>
            </blockquote>
            <p class="gray-text">
              // In case of any errors or incorrect inputs, the bot will notify
              the user with a "Failed to calculate, try again." message.
            </p>
          </div>
          <br />
          <!-- /in add -->
          <h3>
            <code
              ><div class="command" id="command-inadd">
                /in add &lt;name&gt; &lt;value&gt;
              </div></code
            >
          </h3>
          <div class="ml-p">
            <div>
              Adds an entry to the initiative list with the given name and
              value.
            </div>
            <ul>
              <li><code>[name]</code>: The name of the entity to add.</li>
              <li>
                <code>[value]</code>: The initiative value associated with the
                entity.
              </li>
            </ul>
          </div>

          <!-- /in remove -->
          <h3>
            <code
              ><div class="command" id="command-inremove">
                /in remove &lt;name&gt;
              </div></code
            >
          </h3>
          <div class="ml-p">
            <div>
              Removes an entry from the initiative list based on the given name.
            </div>
            <ul>
              <li><code>[name]</code>: The name of the entity to remove.</li>
            </ul>
          </div>
          <br />
          <!-- /in next -->
          <h3>
            <code><div class="command" id="command-innext">/in next</div></code>
          </h3>
          <div class="ml-p">
            <div>
              Moves to the next position in the initiative list and displays it
              as the current position.
            </div>
          </div>
          <br />
          <!-- /in clear -->
          <h3>
            <code
              ><div class="command" id="command-inclear">/in clear</div></code
            >
          </h3>
          <div class="ml-p">
            <div>Clears the entire initiative list, removing all entries.</div>
          </div>
          <br />
          <!-- /in list -->
          <h3>
            <code><div class="command" id="command-inlist">/in list</div></code>
          </h3>
          <div class="ml-p">
            <div>
              Displays the entire initiative list in a formatted manner, marking
              the current position.
            </div>
          </div>
          <br />
          <h3>Output Format</h3>
          <div class="ml-p">
            <div>
              The initiative list is displayed in descending order based on
              initiative values. The current position is highlighted with a "-
              CURRENT" notation next to it.
            </div>
            <p><strong>Example:</strong></p>
            <blockquote class="ml-p">
              Eliza : 25<br />
              Thandor : 20 - CURRENT<br />
              Caelum : 18<br />
              Mirelia : 16<br />
              Alaric : 2<br />
            </blockquote>
          </div>
          <br />
          <!-- /skills -->
          <h3>
            <code
              ><div class="command" id="command-skills">
                /skills &lt;choice&gt;
              </div></code
            >
          </h3>
          <div class="ml-p">
            <div>Returns information about various 5e character skills.</div>
            <code>[choice]</code>
            <ul>
              <li>
                <code>[choice]</code>: Specifies the skill to retrieve
                information about.
              </li>
            </ul>
            <h3>Choices</h3>
            <p class="ml-p">
              Acrobatics, Animal Handling, Arcana, Athletics, Deception,
              History, Insight, Intimidation, Investigation, Medicine, Nature,
              Perception, Performance, Persuasion, Religion, Sleight of Hand,
              Stealth, Survival.
            </p>
          </div>
          <br />
          <!-- /ability-scores -->
          <h3>
            <code
              ><div class="command" id="command-ability-scores">
                /ability-scores &lt;choice&gt;
              </div></code
            >
          </h3>
          <div class="ml-p">
            <div>Returns information about 5e ability scores.</div>
            <code>[choice]</code>
            <ul>
              <li>
                <code>[choice]</code>: Specifies the ability score to retrieve
                information about.
              </li>
            </ul>
            <h3>Choices</h3>
            <p class="ml-p">
              Strength, Dexterity, Constitution, Intelligence, Wisdom, Charisma.
            </p>
          </div>
          <br />
          <!-- /alignments -->
          <h3>
            <code
              ><div class="command" id="command-alignments">
                /alignments &lt;choice&gt;
              </div></code
            >
          </h3>
          <div class="ml-p">
            <div>Returns information about 5e alignments.</div>
            <code>[choice]</code>
            <ul>
              <li>
                <code>[choice]</code>: Specifies the alignment to retrieve
                information about.
              </li>
            </ul>
            <h3>Choices</h3>
            <p class="ml-p">
              Lawful Good, Neutral Good, Chaotic Good, Lawful Neutral, True
              Neutral, Chaotic Neutral, Lawful Evil, Neutral Evil, Chaotic Evil.
            </p>
          </div>
          <br />
          <!-- /languages -->
          <h3>
            <code
              ><div class="command" id="command-languages">
                /languages &lt;choice&gt;
              </div></code
            >
          </h3>
          <div class="ml-p">
            <div>Returns information about 5e languages.</div>
            <code>[choice]</code>
            <ul>
              <li>
                <code>[choice]</code>: Specifies the language to retrieve
                information about.
              </li>
            </ul>
            <h3>Choices</h3>
            <p class="ml-p">
              Common, Dwarvish, Elvish, Giant, Gnomish, Goblin, Halfling, Orc,
              Abyssal, Celestial, Draconic, Deep Speech, Infernal, Primordial,
              Sylvan, Undercommon.
            </p>
          </div>
          <br />
          <!-- /classes -->
          <h3>
            <code
              ><div class="command" id="command-classes">
                /classes &lt;choice&gt;
              </div></code
            >
          </h3>
          <div class="ml-p">
            <div>Returns information about 5e classes.</div>
            <code>[choice]</code>
            <ul>
              <li>
                <code>[choice]</code>: Specifies the class to retrieve
                information about.
              </li>
            </ul>
            <h3>Choices</h3>
            <p class="ml-p">
              Barbarian, Bard, Cleric, Druid, Fighter, Monk, Paladin, Ranger,
              Rogue, Sorcerer, Warlock, Wizard.
            </p>
          </div>
          <br />
          <!-- /sub classes -->
          <h3>
            <code
              ><div class="command" id="command-subclasses">
                /subclasses &lt;choice&gt;
              </div></code
            >
          </h3>
          <div class="ml-p">
            <div>Returns information about 5e sub-classes.</div>
            <code>[choice]</code>
            <ul>
              <li>
                <code>[choice]</code>: Specifies the sub-class to retrieve
                information about.
              </li>
            </ul>
            <h3>Choices</h3>
            <p class="ml-p">
              Berserker, Champion, Devotion, Draconic, Evocation, Fiend, Hunter,
              Land, Life, Lore, Open Hand, Thief.
            </p>
          </div>
          <br />
          <!-- /races -->
          <h3>
            <code
              ><div class="command" id="command-races">
                /races &lt;choice&gt;
              </div></code
            >
          </h3>
          <div class="ml-p">
            <div>Returns information about 5e races.</div>
            <code>[choice]</code>
            <ul>
              <li>
                <code>[choice]</code>: Specifies the race to retrieve
                information about.
              </li>
            </ul>
            <h3>Choices</h3>
            <p class="ml-p">
              Dragonborn, Dwarf, Elf, Gnome, Half-Elf, Half-Orc, Halfling,
              Human, Tiefling.
            </p>
          </div>
          <br />
          <!-- /subraces -->
          <h3>
            <code
              ><div class="command" id="command-subraces">
                /subraces &lt;choice&gt;
              </div></code
            >
          </h3>
          <div class="ml-p">
            <div>Returns information about 5e sub-races.</div>
            <code>[choice]</code>
            <ul>
              <li>
                <code>[choice]</code>: Specifies the sub-race to retrieve
                information about.
              </li>
            </ul>
            <h3>Choices</h3>
            <p class="ml-p">
              High Elf, Hill Dwarf, Lightfoot Halfling Rock Gnome.
            </p>
          </div>
          <br />
          <!-- /conditions -->
          <h3>
            <code
              ><div class="command" id="command-conditions">
                /conditions &lt;choice&gt;
              </div></code
            >
          </h3>
          <div class="ml-p">
            <div>Returns information about 5e conditions.</div>
            <code>[choice]</code>
            <ul>
              <li>
                <code>[choice]</code>: Specifies the condition to retrieve
                information about.
              </li>
            </ul>
            <h3>Choices</h3>
            <p class="ml-p">
              Blinded, Charmed, Deafened, Fatigued, Frightened, Grappled,
              Incapacitated, Invisible, Paralyzed, Petrified, Poisoned, Prone,
              Restrained, Stunned, Unconscious.
            </p>
          </div>
          <br />
          <!-- /spells -->
          <h3>
            <code
              ><div class="command" id="command-spells">
                /spells &lt;search term&gt;
              </div></code
            >
          </h3>
          <div class="ml-p">
            <div>Searches for 5e spells matching the provided term.</div>
            <code>[search term]</code>
            <ul>
              <li><code>[search term]</code>: The term to search for.</li>
            </ul>
          </div>
          <br />
          <!-- /proficiencies -->
          <h3>
            <code
              ><div class="command" id="command-proficiencies">
                /proficiencies &lt;search term&gt;
              </div></code
            >
          </h3>
          <div class="ml-p">
            <div>Searches for 5e proficiencies matching the provided term.</div>
            <code>[search term]</code>
            <ul>
              <li><code>[search term]</code>: The term to search for.</li>
            </ul>
          </div>
          <br />
          <!-- /features -->
          <h3>
            <code
              ><div class="command" id="command-features">
                /features &lt;search term&gt;
              </div></code
            >
          </h3>
          <div class="ml-p">
            <div>Searches for 5e features matching the provided term.</div>
            <code>[search term]</code>
            <ul>
              <li><code>[search term]</code>: The term to search for.</li>
            </ul>
          </div>
          <br />
          <!-- /traits -->
          <h3>
            <code
              ><div class="command" id="command-traits">
                /traits &lt;search term&gt;
              </div></code
            >
          </h3>
          <div class="ml-p">
            <div>Searches for 5e traits matching the provided term.</div>
            <code>[search term]</code>
            <ul>
              <li><code>[search term]</code>: The term to search for.</li>
            </ul>
          </div>
          <br />
          <!-- /equipment -->
          <h3>
            <code
              ><div class="command" id="command-equipment">
                /equipment &lt;search term&gt;
              </div></code
            >
          </h3>
          <div class="ml-p">
            <div>Searches for 5e equipment matching the provided term.</div>
            <code>[search term]</code>
            <ul>
              <li><code>[search term]</code>: The term to search for.</li>
            </ul>
          </div>
          <br />
          <!-- /magicitems -->
          <h3>
            <code
              ><div class="command" id="command-magicitems">
                /magicitems &lt;search term&gt;
              </div></code
            >
          </h3>
          <div class="ml-p">
            <div>Searches for 5e magic items matching the provided term.</div>
            <code>[search term]</code>
            <ul>
              <li><code>[search term]</code>: The term to search for.</li>
            </ul>
          </div>
          <!-- /monsters -->
          <h3>
            <code
              ><div class="command" id="command-monsters">
                /monsters &lt;search term&gt;
              </div></code
            >
          </h3>
          <div class="ml-p">
            <div>Searches for 5e monsters matching the provided term.</div>
            <code>[search term]</code>
            <ul>
              <li><code>[search term]</code>: The term to search for.</li>
            </ul>
          </div>
        </article>
      </main>
      <footer>
        <div style="display: flex;">
          <div class="support-link-container">
            <img
              src="./assets/clyde_discord.png"
              alt=""
              height="30px"
              width="30px"
            />
            <a href="https://discord.gg/rUqQbvV9">Support Server</a>
          </div>
          <div class="support-link-container">
            <img
              src="./assets/github-mark.png"
              alt=""
              height="30px"
              width="30px"
            />
            <a href="https://github.com/royalsaltmerchant/5ebot">Github Repo</a>
          </div>
        </div>
        <br>
        <div style="display: flex;">
          <small><a href="tos_privacy.html">Terms of Servic and Privacy Policy</a></small>
        </div>
      </footer>
    </div>
  </body>
  <script>
    function handleInvite() {
      window
        .open(
          "https://discord.com/oauth2/authorize?client_id=1029113452763037767&scope=bot",
          "_blank"
        )
        .focus();
    }
  </script>
</html>
                               

Whois info of domain

Domain Name: 5EBOT.COM
Registry Domain ID: 2733741757_DOMAIN_COM-VRSN
Registrar WHOIS Server: whois.squarespace.domains
Registrar URL: http://domains2.squarespace.com
Updated Date: 2024-10-07T20:31:11Z
Creation Date: 2022-10-22T18:06:51Z
Registry Expiry Date: 2025-10-22T18:06:51Z
Registrar: Squarespace Domains II LLC
Registrar IANA ID: 895
Registrar Abuse Contact Email: [email protected]
Registrar Abuse Contact Phone: +1.6466935324
Domain Status: clientDeleteProhibited https://icann.org/epp#clientDeleteProhibited
Domain Status: clientTransferProhibited https://icann.org/epp#clientTransferProhibited
Name Server: NS-CLOUD-D1.GOOGLEDOMAINS.COM
Name Server: NS-CLOUD-D2.GOOGLEDOMAINS.COM
Name Server: NS-CLOUD-D3.GOOGLEDOMAINS.COM
Name Server: NS-CLOUD-D4.GOOGLEDOMAINS.COM
DNSSEC: signedDelegation
DNSSEC DS Data: 3254 8 2 C58E566117789273DEE4EA81AE8690F2F88F7828AB87E3345C76231723F5ADE0
URL of the ICANN Whois Inaccuracy Complaint Form: https://www.icann.org/wicf/
>>> Last update of whois database: 2025-05-16T01:16:06Z <<<
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