Check server response of

Server response
NS records
Whois domain
Response headers
Request headers
Raw HTML code
301 Moved Permanently - pbud.com
HTTP Status: 301
User-Agent: Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; [email protected])
Server: nginx
Date: Thu, 15 May 2025 02:48:41 GMT
Content-Type: text/html
Transfer-Encoding: chunked
Connection: close
Location: https://introvert.com/?domain=pbud.com
Cache-Control: max-age=10800
Vary: Accept-Language

HTTP Code 301 Moved Permanently

301 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://introvert.com/?domain=pbud.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 02:48:41 GMT
Content-Type: text/html; charset=UTF-8
Transfer-Encoding: chunked
Connection: keep-alive
Server: Apache/2.4.56 (Amazon Linux)

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: pbud.com
Accept: */*
User-Agent: Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; [email protected])
<!DOCTYPE html>
<html>
<head>
	<meta charset="utf-8">
	<meta http-equiv="X-UA-Compatible" content="IE=edge">
	<meta name="viewport" content="width=device-width, initial-scale=1.0">

	<title>introvert.com</title>

	<link rel="icon" href="favicon.ico" type="image/png" />

	<link href="https://fonts.googleapis.com/css?family=Reem+Kufi|Roboto:300" rel="stylesheet">
	<link href="https://use.fontawesome.com/releases/v5.4.1/css/all.css" rel="stylesheet">
	<link rel="stylesheet" href="css/reset.css">
	<link rel="stylesheet" href="css/styles.css">
	<link rel="stylesheet" href="css/themes/indigo-white.css">
	<!-- <link rel="stylesheet" href="css/themes/green-white.css"> -->
	<!-- <link rel="stylesheet" href="css/themes/red-white.css"> -->
	<!-- <link rel="stylesheet" href="css/themes/grey-white.css"> -->
	<!-- <link rel="stylesheet" href="css/themes/white-indigo.css"> -->
	<!-- <link rel="stylesheet" href="css/themes/white-blue.css"> -->
	<!-- <link rel="stylesheet" href="css/themes/white-grey.css"> -->
	<!-- <link rel="stylesheet" href="css/themes/white-red.css"> -->
	<!-- <link rel="stylesheet" href="css/themes/yellow-black.css"> -->
	<style>
		a {
			color: pink;
			font-family: sans-serif;
			font-weight: 888;
		}
		@import 	url('https://fonts.googleapis.com/css?family=Poppins:400,500,600,700&display=swap');
		*{
		  margin: 0;
		  padding: 0;
		  outline: none;
		  box-sizing: border-box;
		  font-family: 'Poppins', sans-serif;
		}
		body{
		  display: flex;
		  align-items: center;
		  justify-content: center;
		  min-height: 100vh;
		  padding: 10px;
		  font-family: 'Poppins', sans-serif;
		  background: linear-gradient(115deg, #56d8e4 10%, #9f01ea 90%);
		}
		.container{
		  max-width: 800px;
		  background: #fff;
		  /*width: 800px;*/
		  padding: 25px 40px 10px 40px;
		  box-shadow: 0px 0px 10px rgba(0,0,0,0.1);
		}
		.container .text{
		  text-align: center;
		  font-size: 41px;
		  font-weight: 600;
		  font-family: 'Poppins', sans-serif;
		  background: -webkit-linear-gradient(right, #56d8e4, #9f01ea, #56d8e4, #9f01ea);
		  -webkit-background-clip: text;
		  -webkit-text-fill-color: transparent;
		}
		.container form{
		  padding: 30px 0 0 0;
		}
		.container form .form-row{
		  display: flex;
		  margin: 32px 0;
		}
		form .form-row .input-data{
		  width: 100%;
		  height: 40px;
		  margin: 0 20px;
		  position: relative;
		}
		form .form-row .textarea{
		  height: 70px;
		}
		.input-data input,
		.textarea textarea{
		  display: block;
		  width: 100%;
		  height: 100%;
		  border: none;
		  font-size: 17px;
		  border-bottom: 2px solid rgba(0,0,0, 0.12);
		}
		.input-data input:focus ~ label, .textarea textarea:focus ~ label,
		.input-data input:valid ~ label, .textarea textarea:valid ~ label{
		  transform: translateY(-20px);
		  font-size: 14px;
		  color: #3498db;
		}
		.textarea textarea{
		  resize: none;
		  padding-top: 10px;
		}
		.input-data label{
		  position: absolute;
		  pointer-events: none;
		  bottom: 10px;
		  font-size: 16px;
		  transition: all 0.3s ease;
		  color: #000;
		}
		.textarea label{
		  width: 100%;
		  bottom: 40px;
		  background: #fff;
		}
		.input-data .underline{
		  position: absolute;
		  bottom: 0;
		  height: 2px;
		  width: 100%;
		}
		.input-data .underline:before{
		  position: absolute;
		  content: "";
		  height: 2px;
		  width: 100%;
		  background: #3498db;
		  transform: scaleX(0);
		  transform-origin: center;
		  transition: transform 0.3s ease;
		}
		.input-data input:focus ~ .underline:before,
		.input-data input:valid ~ .underline:before,
		.textarea textarea:focus ~ .underline:before,
		.textarea textarea:valid ~ .underline:before{
		  transform: scale(1);
		}
		.submit-btn .input-data{
		  overflow: hidden;
		  height: 45px!important;
		  width: 25%!important;
		}
		.submit-btn .input-data .inner{
		  height: 100%;
		  width: 300%;
		  position: absolute;
		  left: -100%;
		  background: -webkit-linear-gradient(right, #56d8e4, #9f01ea, #56d8e4, #9f01ea);
		  transition: all 0.4s;
		}
		.submit-btn .input-data:hover .inner{
		  left: 0;
		}
		.submit-btn .input-data button{
		  background: none;
		  border: none;
		  color: #fff;
		  font-size: 20px;
		  font-weight: 777;
		  text-transform: uppercase;
		  letter-spacing: 1px;
		  cursor: pointer;
		  position: relative;
		  z-index: 2;
		  padding: 10px;
		}
		.error {
		  color: red;
    	  text-align: center;
    	  padding: 25px;
    	  font-weight: bold;
		}
		@media (max-width: 700px) {
		  .container .text{
			font-size: 30px;
		  }
		  .container form{
			padding: 10px 0 0 0;
		  }
		  .container form .form-row{
			display: block;
		  }
		  form .form-row .input-data{
			margin: 35px 0!important;
		  }
		  .submit-btn .input-data{
			width: 40%!important;
		  }
		}
	</style>
</head>
<!-- Google tag (gtag.js) -->
<script async src="https://www.googletagmanager.com/gtag/js?id=G-GYQ7E9RHS6"></script>
<script>
  window.dataLayer = window.dataLayer || [];
  function gtag(){dataLayer.push(arguments);}
  gtag('js', new Date());

  gtag('config', 'G-GYQ7E9RHS6');
</script>
<body>
	<main>
		<div class="intro">pbud.com</div>
		
				
			<div class="tagline">Interested in this domain? <a class="contact" href="/?domain=pbud.com&contact=true">Get in touch</a></div>
			
		
	</main>
</body>
</html>
                               

Whois info of domain

Domain Name: PBUD.COM
Registry Domain ID: 334626210_DOMAIN_COM-VRSN
Registrar WHOIS Server: whois.gandi.net
Registrar URL: http://www.gandi.net
Updated Date: 2025-01-03T21:27:30Z
Creation Date: 2006-02-03T23:20:32Z
Registry Expiry Date: 2026-02-03T23:20:32Z
Registrar: Gandi SAS
Registrar IANA ID: 81
Registrar Abuse Contact Email: [email protected]
Registrar Abuse Contact Phone: +33.170377661
Domain Status: clientTransferProhibited https://icann.org/epp#clientTransferProhibited
Name Server: NS-156-A.GANDI.NET
Name Server: NS-32-C.GANDI.NET
Name Server: NS-60-B.GANDI.NET
DNSSEC: unsigned
URL of the ICANN Whois Inaccuracy Complaint Form: https://www.icann.org/wicf/
>>> Last update of whois database: 2025-05-15T02:48:31Z <<<
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