Check server response of

Server response
NS records
Whois domain
Response headers
Request headers
Raw HTML code
302 Found - k5ijx.com
HTTP Status: 302
User-Agent: Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; [email protected])
Server: nginx
Date: Mon, 12 May 2025 19:31:22 GMT
Transfer-Encoding: chunked
Connection: keep-alive
Location: http://pinebeltamateurradio.com

HTTP Code 302 Found (Moved Temporarily)

302 http status code indicates that the requested resource is temporarily available at a different URL.

When is Code 302 used?

  • When temporarily changing a page URL
  • When testing new content
  • During temporary maintenance

What does Code 302 mean for the user?

The user is automatically redirected to the new URL, but search engines continue to index the old address.

200 OK - http://pinebeltamateurradio.com
HTTP Status: 200
User-Agent: Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; [email protected])
Date: Mon, 12 May 2025 19:31:23 GMT
Server: Apache
X-Frame-Options: SAMEORIGIN
Last-Modified: Tue, 20 Jun 2023 12:12:21 GMT
Accept-Ranges: bytes
Content-Length: 30068
X-XSS-Protection: 1; mode=block
X-Content-Type-Options: nosniff
Content-Type: text/html

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: k5ijx.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">
        <title>Pine Belt Amateur Radio Club - W5CJR, K5PN, & K5IJX</title>
        <meta content="width=device-width, initial-scale=1.0" name="viewport">
        <meta content="Pine Belt Amateur Radio Club - W5CJR, K5PN, & K5IJX" name="keywords">
        <meta content="Home of the Pine Belt Amateur Radio Club - W5CJR, K5PN, & K5IJX" name="description">

        <!-- Favicon -->
        <link href="img/favicon.ico" rel="icon">
<script language="JavaScript" src="js/gen_validatorv31.js" type="text/javascript"></script>
        <!-- Google Fonts -->
        <link href="https://fonts.googleapis.com/css?family=Open+Sans:300,400,600,700&display=swap" rel="stylesheet">

        <!-- CSS Libraries -->
        <link href="https://stackpath.bootstrapcdn.com/bootstrap/4.4.1/css/bootstrap.min.css" rel="stylesheet">
        <link href="https://stackpath.bootstrapcdn.com/font-awesome/4.7.0/css/font-awesome.min.css" rel="stylesheet">
        <link href="lib/owlcarousel/assets/owl.carousel.min.css" rel="stylesheet">
        <link href="lib/lightbox/css/lightbox.min.css" rel="stylesheet">

        <!-- Template Stylesheet -->
        <link href="css/style.css" rel="stylesheet">
    </head>

    <body>
        <!-- Header Nav Start -->
        <div id="header">
            <div class="container-fluid">
                <div id="logo" class="pull-left">
                    <a href="index.html"><img src="img/logo.png" alt="Logo" /></a>
                </div>

                <nav id="nav-menu-container">
                    <ul class="nav-menu">
                        <li class="menu-active"><a href="#header-carousel">Home</a></li>
                        <li><a href="#about">About Us</a></li>
                        <li><a href="#services">Community Service</a></li>
                        <li><a href="#portfolio">Links</a></li>
                        <li><a href="#contact">Contact Us</a></li>
                    </ul>
                </nav>
            </div>
        </div>
        <!-- Header Nav End -->
        
        <!-- Header carousel Start-->
        <div id="header-carousel">
            <div class="header-carousel-container">
                <div id="headerCarousel" class="carousel  slide carousel-fade" data-ride="carousel">
                    <ul class="carousel-indicators">
                        <li data-target="#headerCarousel" data-slide-to="0" class="active"></li>
                        <li data-target="#headerCarousel" data-slide-to="1"></li>
                        <li data-target="#headerCarousel" data-slide-to="2"></li>
						<li data-target="#headerCarousel" data-slide-to="3"></li>
                    </ul>

                    <div class="carousel-inner">
						<div class="carousel-item active">
                            <div class="carousel-background"><img src="img/pbarc.jpg" alt=""></div>
                            <div class="carousel-container">
                                <div class="carousel-content">
                                    <h2>Pine Belt Amateur Radio Club</h2>
                                    <p>
                                        Welcome to the home of the Pine Belt Amateur Radio Club. Please explore our site and let us know if you would like more information.
                                    </p>
                                    <a href="#" class="btn-get-started scrollto">Welcome</a>
                                </div>
                            </div>
                        </div>
					
					                        <div class="carousel-item">
                            <div class="carousel-background"><img src="img/2023FD.jpg" alt=""></div>
                            <div class="carousel-container">
                                <div class="carousel-content">
                                    <h2>2023 Field Day</h2>
                                    <p>
                                        Looking forward to working the bands and hanging out with some great people!! Hope y'all are ready! Bring your friends and family out on June 24th - 25th. <br><br>

Hattiesburg Police Firing Range.<br>
2505 Lakeview Road.<br>
Hattiesburg MS, 39401<br><br>
Countdown till Field Day:
<p id="demo"></p>

<script>
// Set the date we're counting down to
var countDownDate = new Date("Jun 24, 2023 07:00:00").getTime();

// Update the count down every 1 second
var x = setInterval(function() {

  // Get today's date and time
  var now = new Date().getTime();

  // Find the distance between now and the count down date
  var distance = countDownDate - now;

  // Time calculations for days, hours, minutes and seconds
  var days = Math.floor(distance / (1000 * 60 * 60 * 24));
  var hours = Math.floor((distance % (1000 * 60 * 60 * 24)) / (1000 * 60 * 60));
  var minutes = Math.floor((distance % (1000 * 60 * 60)) / (1000 * 60));
  var seconds = Math.floor((distance % (1000 * 60)) / 1000);

  // Display the result in the element with id="demo"
  document.getElementById("demo").innerHTML = days + "d " + hours + "h "
  + minutes + "m " + seconds + "s ";

  // If the count down is finished, write some text
  if (distance < 0) {
    clearInterval(x);
    document.getElementById("demo").innerHTML = "EXPIRED";
  }
}, 1000);
</script>
                                    </p>
                                    <a href="https://www.facebook.com/groups/1184167798947797" class="btn-get-started scrollto">Get More Info</a>
                                </div>
                            </div>
                        </div>
					
					
					
						
                        <div class="carousel-item">
                            <div class="carousel-background"><img src="img/ARES_Color_Logo.svg.png" alt=""></div>
                            <div class="carousel-container">
                                <div class="carousel-content">
                                    <h2>Amateur Radio Emergency Services (ARES)</h2>
                                    <p>
                                        Amateur radio operators use their training, skills, and equipment to provide communications during emergencies When All Else Fails���.  Hams serve our communities when storms or other disasters damage critical communication infrastructure, including cell towers, and wired and wireless networks. Amateur radio can function completely independently of the internet and phone systems. An amateur radio station can be set up almost anywhere in minutes. Hams can quickly raise a wire antenna in a tree or on a mast, connect it to a radio and power source, and communicate effectively with others.
                                    </p>
                                    <a href="http://www.arrl.org/ares" class="btn-get-started scrollto">Get Started</a>
                                </div>
                            </div>
                        </div>

                        <div class="carousel-item">
                            <div class="carousel-background"><img src="img/pamillig.cleanair.princegallitzin-scaled.jpg" alt=""></div>
                            <div class="carousel-container">
                                <div class="carousel-content">
                                    <h2>Contesting and Recreational Activities</h2>
                                    <p>
                                        Contesting (also known as radiosport) is a competitive activity pursued by amateur radio operators. In a contest, an amateur radio station, which may be operated by an individual or a team, seeks to contact as many other amateur radio stations as possible in a given period of time and exchange information.
                                    </p>
                                    <a href="#" class="btn-get-started scrollto">Get Started</a>
                                </div>
                            </div>
                        </div>

                        <div class="carousel-item">
                            <div class="carousel-background"><img src="img/asb9GMU.jpg" alt=""></div>
                            <div class="carousel-container">
                                <div class="carousel-content">
                                    <h2>Basic Communication</h2>
                                    <p>
                                        Amateur radio operators use their amateur radio station to make contacts with individual hams as well as participating in round table discussion groups or "rag chew sessions" on the air. Some join in regularly scheduled on-air meetings with other amateur radio operators, called "nets". Nets can allow operators to learn procedures for emergencies, be an informal round table, or cover specific interests shared by a group.
                                    </p>
                                    <a href="#" class="btn-get-started scrollto">Get Started</a>
                                </div>
                            </div>
                        </div>
                    </div>

                    <a class="carousel-control-prev" href="#headerCarousel" role="button" data-slide="prev">
                        <span class="carousel-control-prev-icon fa fa-chevron-left" aria-hidden="true"></span>
                    </a>

                    <a class="carousel-control-next" href="#headerCarousel" role="button" data-slide="next">
                        <span class="carousel-control-next-icon fa fa-chevron-right" aria-hidden="true"></span>
                    </a>

                </div>
            </div>
        </div>
        <!-- Header carousel End-->

        <!-- About Us Start-->
        <div id="about">
            <div class="container-fluid">
                <div class="section-header">
                    <h2>Welcome to Our Website</h2>
                </div>
                <div class="row">
                    <div class="col-md-12">
                        <div class="welcome m-auto">
                            <p>
                                The Pine Belt Amateur Radio Club is a 'Ham' radio club located in and around the Pine Belt area of Mississippi.  This club participates in the annual ARRL field day activities as well as assisting with local functions. We offer regularly scheduled amateur radio exams through our accredited volunteer examiners, own and maintain several area repeaters, and operate and maintain emergency stations for Forrest and Lamar County EOCs. In addition, we often provide communications for area events as requested and get involved with other technical projects, SET and various operating events.  We meet on the third Tuesday of each month, please see below for more information.
                            </p>
                            <a class="btn" href="#contact">Read More</a>
                        </div>
                    </div>
                </div>
                <div class="row">
                    <div class="col-md-4 about-col">
                        <div class="about-content">
                            <i class="fa fa-history"></i>
                            <h2>Our Story</h2>
                            <p>
                                The Lamar Amateur Radio Club was started by Steve Sweeney, Ronnie Williamson , Mark Fillingane (K5IJX), and Dale Hankins (KB5VE) in approx. 1999.
Mark (K5IJX) was also one of the founding member of the Hattiesburg Amateur Radio Club.
These two clubs combined to become the Pine Belt Amateur Radio Club in 2021.
                            </p>
                        </div>
                    </div>
                    <div class="col-md-4 about-col">
                        <div class="about-content">
                            <i class="fa fa-bullseye"></i>
                            <h2>Our Mission</h2>
                            <p>
                               Strives for every member to get involved, get active, and get on the air; Encourages radio experimentation and, through its members, advances radio technology and education; and Organizes and trains volunteers to serve their communities by providing public service and emergency communications. 
                            </p>
                        </div>
                    </div>
                    <div class="col-md-4 about-col">
                        <div class="about-content">
                            <i class="fa fa-eye"></i>
                            <h2>Our Vision</h2>
                            <p>
                                Supports the awareness and growth of Amateur Radio worldwide.
                            </p>
                        </div>
                    </div>
                </div>
            </div>
        </div>
        <!-- About Us End-->

        <!-- Services Start -->
        <div id="services">
            <div class="container">
                <div class="section-header">
                    <h2>Our Service to the community</h2>
                    <p>
                        We are here to help during any and all community events when radio communications are needed, or someone just has an interest.
                    </p>
                </div>
                <div class="row">
                    <div class="col-md-6 col-lg-4">
                        <div class="service-col">
                            <div class="service-icon"><i class="fa fa-laptop"></i></div>
                            <h3>Sporting Events</h3>
                            <div class="service-detail">
                                We like to help with Marathons, Bicycle Races, Charity Walks and all types of events, as it gets us prepared and lets us practice with our equipment.
                            </div>
                        </div>
                    </div>
                    <div class="col-md-6 col-lg-4">
                        <div class="service-col">
                            <div class="service-icon"><i class="fa fa-laptop"></i> </div>
                            <h3>Weather Events</h3>
                            <div class="service-detail">
                                We are always prepared for power Outages, Communication Outages and other weather events.  For some of us, it is our passion.
                            </div>
                        </div>
                    </div>
                    <div class="col-md-6 col-lg-4">
                        <div class="service-col">
                            <div class="service-icon"><i class="fa fa-laptop"></i> </div>
                            <h3>Educational Events</h3>
                            <div class="service-detail">
                                We can do electronic and radio presentations, demonstrations and other interactions for adults and children. Just ask!
                            </div>
                        </div>
                    </div>
                    
                </div>
            </div>
        </div>
        <!-- Services End -->

        <!-- Counter Start -->
        <div id="counters">
            <div class="container">
                <div class="row">
                    <div class="col-md-3 col-sm-6">
                        <div class="counter">
                            <div class="counter-icon"><i class="fa fa-calendar"></i></div>
                            <div class="number"> <span>24</span></div>
                            <h4 class="font-weight">Years in Existence</h4>
                        </div>
                    </div>
                    <div class="col-md-3 col-sm-6">
                        <div class="counter">
                            <div class="counter-icon"><i class="fa fa-check"></i></div>
                            <div class="number"> <span>250</span></div>
                            <h4 class="font-weight">Approx. Club Demonstrations<br>Since Inception</h4>
                        </div>
                    </div>
                    <div class="col-md-3 col-sm-6">
                        <div class="counter">
                            <div class="counter-icon"><i class="fa fa-users"></i></div>
                            <div class="number"> <span>30</span></div>
                            <h4 class="font-weight">Approx. Total Current Members</h4>
                        </div>
                    </div>
                    <div class="col-md-3 col-sm-6">
                        <div class="counter">
                            <div class="counter-icon"><i class="fa fa-heart"></i></div>
                            <div class="number"> <span>15</span></div>
                            <h4 class="font-weight">Awards Won</h4>
                        </div>
                    </div>
                </div>
            </div>
        </div>
        <!-- Counter End -->

        <!-- Portfolio Start -->
        <div id="portfolio">
            <div class="container">
                <header class="section-header">
                    <h3 class="section-title">Links</h3>
                    <p>
                        Please visit some of our friends:
                    </p>
                </header>

                <div class="row">
                    <div class="col-lg-12">
                        <ul class="portfolio-flters">
                            <li data-filter="*" class="filter-active">All</li>
                            <li data-filter=".web-dev">Local</li>
                            <li data-filter=".game-dev">Weather</li>
                            <li data-filter=".app-dev">National</li>
                        </ul>
                    </div>
                </div>

                <div class="row portfolio-container">
                    <div class="col-lg-4 col-md-6 portfolio-item web-dev">
                        <div class="portfolio-wrap">
                            <figure>
                                <img src="img/frequency.gif" class="img-fluid" alt="">
                                <a href="img/frequency.gif" data-lightbox="portfolio" data-title="The Official Web Site of the Mississippi Section ARES" class="link-preview" title="Preview"><i class="fa fa-eye"></i></a>
                                <a href="https://www.arrlmiss.org/" class="link-details" title="More Details"><i class="fa fa-link"></i></a>
                                <h4 class="portfolio-title">The Official Web Site of the Mississippi Section ARES</h4>
                            </figure>
                        </div>
                    </div>

                    <div class="col-lg-4 col-md-6 portfolio-item web-dev">
                        <div class="portfolio-wrap">
                            <figure>
                                <img src="img/512x512bb.jpg" class="img-fluid" alt="">
                                <a href="img/512x512bb.jpg" class="link-preview" data-lightbox="portfolio" data-title="Broadcastify" title="Preview"><i class="fa fa-eye"></i></a>
                                <a href="https://www.broadcastify.com/listen/feed/39513" class="link-details" title="More Details"><i class="fa fa-link"></i></a>
                                <h4 class="portfolio-title">Broadcastify <span>146.670 South East Mississippi ARES and 147.315 Repeater</span></h4>
                            </figure>
                        </div>
                    </div>

                    <div class="col-lg-4 col-md-6 portfolio-item game-dev">
                        <div class="portfolio-wrap">
                            <figure>
                                <img src="img/unnamed.jpg" class="img-fluid" alt="">
                                <a href="img/unnamed.jpg" class="link-preview" data-lightbox="portfolio" data-title="The Hurricane Watch Net" title="Preview"><i class="fa fa-eye"></i></a>
                                <a href="https://www.hwn.org/" class="link-details" title="More Details"><i class="fa fa-link"></i></a>
                                <h4 class="portfolio-title">The Hurricane Watch Net </h4>
                            </figure>
                        </div>
                    </div>

                    <div class="col-lg-4 col-md-6 portfolio-item game-dev">
                        <div class="portfolio-wrap">
                            <figure>
                                <img src="img/National-Weather-Service-logo.jpg" class="img-fluid" alt="">
                                <a href="img/National-Weather-Service-logo.jpg" class="link-preview" data-lightbox="portfolio" data-title="NWS Jackson" title="Preview"><i class="fa fa-eye"></i></a>
                                <a href="https://www.weather.gov/jan/" class="link-details" title="More Details"><i class="fa fa-link"></i></a>
                                <h4 class="portfolio-title">NWS Jackson</h4>
                            </figure>
                        </div>
                    </div>

                    <div class="col-lg-4 col-md-6 portfolio-item app-dev">
                        <div class="portfolio-wrap">
                            <figure>
                                <img src="img/ARRL-Logo-800x533-1.jpg" class="img-fluid" alt="">
                                <a href="img/ARRL-Logo-800x533-1.jpg" class="link-preview" data-lightbox="portfolio" data-title="ARRL" title="Preview"><i class="fa fa-eye"></i></a>
                                <a href="http://www.arrl.org/" class="link-details" title="More Details"><i class="fa fa-link"></i></a>
                                <h4 class="portfolio-title">ARRL <span>Amateur Radio Relay League</span></h4>
                            </figure>
                        </div>
                    </div>

                    <div class="col-lg-4 col-md-6 portfolio-item app-dev">
                        <div class="portfolio-wrap">
                            <figure>
                                <img src="img/delta.png" class="img-fluid" alt="">
                                <a href="img/delta.png" class="link-preview" data-lightbox="portfolio" data-title="ARRL Delta Division" title="Preview"><i class="fa fa-eye"></i></a>
                                <a href="http://www.arrldelta.org/" class="link-details" title="More Details"><i class="fa fa-link"></i></a>
                                <h4 class="portfolio-title">ARRL Delta Division</h4>
                            </figure>
                        </div>
                    </div>
                </div>
            </div>
        </div>
        <!-- Portfolio End -->

        <!-- Testimonials Start -->
        <div id="testimonials">
            <div class="container">
                <div class="owl-carousel testimonials-carousel">
                    <div class="testimonial-item">
                        <div class="testimonial-img">
                            <img src="img/justin_gleason.jpg" alt="">
                        </div>
                        <div class="testimonial-content">
                            <h3>Justin Gleason</h3>
                            <h4>KF7DLW</h4>
                            <p>
                                Petal, MS
                            </p>
                        </div>
                    </div>

                    <div class="testimonial-item">
                        <div class="testimonial-img">
                            <img src="img/brad_amacker.jpg" alt="">
                        </div>
                        <div class="testimonial-content">
                            <h3>Brad Amacker</h3>
                            <h4>N5MZ</h4>
                            <p>
                                Petal, MS
                            </p>
                        </div>
                    </div>

                    <div class="testimonial-item">
                        <div class="testimonial-img">
                            <img src="img/bill_waters.jpg" alt="">
                        </div>
                        <div class="testimonial-content">
                            <h3>Bill Waters</h3>
                            <h4>KC3HLT</h4>
                            <p>
                                Purvis, MS
                            </p>
                        </div>
                    </div>
                </div>
            </div>
        </div>
        <!-- Testimonials End -->

        <!-- Contact Start -->
        <div class="contact" id="contact">
            <div class="container">
                <div class="section-header">
                    <h3>Contact Us</h3>
                    <p>
                        Club meetings:<br>
						Third Tuesday at 7:00 PM<br>
						Lamar Park Community Center<br>
						Hattiesburg, MS 39402<br><Br>
						If you are a ham, or want to become a licensed ham radio operator, please feel free to stop by and introduce yourself.
                    </p>
                </div>

                <div class="row align-items-center">
                    <div class="col-md-7">
                        <div class="form">
                            <form action="submit.php" method="POST" name="myemailform">
                                <div class="form-row">
                                    <div class="form-group col-md-6">
                                        <input type="text" name="name" class="form-control" placeholder="Your Name" />
                                    </div>
                                    <div class="form-group col-md-6">
                                        <input type="email" name="email" class="form-control" placeholder="Your Email" />
                                    </div>
                                </div>
                                <div class="form-group">
                                    <input type="text" name="subject" class="form-control" placeholder="Subject" />
                                </div>
                                <div class="form-group">
                                    <textarea class="form-control" rows="5" placeholder="Message" name="message"></textarea>
                                </div>
                                <div><button type="submit" name='submit'>Send Message</button></div>
                            </form>
                            <script language="JavaScript">
// Code for validating the form
// Visit http://www.javascript-coder.com/html-form/javascript-form-validation.phtml
// for details
var frmvalidator  = new Validator("myemailform");
frmvalidator.addValidation("name","req","Please provide your name"); 
frmvalidator.addValidation("email","req","Please provide your email"); 
frmvalidator.addValidation("email","email","Please enter a valid email address"); 
</script>
                        </div>
                    </div>
                    <div class="col-md-5">
                        <div class="contact-info">
                            <img src="img/community.png" alt="Map" />
                            <p><i class="fa fa-map-marker"></i>Lamar Park Community Center,<br> Hattiesburg, MS 39402</p>
                            <p><i class="fa fa-envelope"></i>[email protected]</p>
                            <p><i class="fa fa-phone"></i>(601) 297-6307</p>
                            <div class="social">
                                <a href="#"><i class="fa fa-twitter"></i></a>
                                <a href="https://www.facebook.com/groups/652440161448818"><i class="fa fa-facebook"></i></a>
                                <a href="#"><i class="fa fa-linkedin"></i></a>
                                <a href="#"><i class="fa fa-instagram"></i></a>
                                <a href="https://www.broadcastify.com/listen/feed/39513"><i class="fa fa-youtube"></i></a>
                            </div>
                        </div>
                    </div>
                </div>
            </div>
        </div>
        <!-- Contact End -->

        <!-- Footer Start -->
        <div id="footer">
            <div class="container">
                <div class="row align-items-center">
                    <div class="col-md-6">
                        <p>&copy; Copyright 2023 <a href="https://www.pinebeltamateurradio.com">Pine Belt Amateur Radio Club</a>. All Rights Reserved</p>
                    </div>
                    <div class="col-md-6">
                        <p></p>
                    </div>
                </div>
            </div>
        </div>
        <!-- Footer End -->
        
        <!-- Back to Top -->
        <a href="#" class="back-to-top"><i class="fa fa-chevron-up"></i></a>

        <!-- JavaScript Libraries -->
        <script src="https://code.jquery.com/jquery-3.4.1.min.js"></script>
        <script src="https://stackpath.bootstrapcdn.com/bootstrap/4.4.1/js/bootstrap.bundle.min.js"></script>
        <script src="lib/easing/easing.min.js"></script>
        <script src="lib/menuspy/menuspy.min.js"></script>
        <script src="lib/waypoints/waypoints.min.js"></script>
        <script src="lib/counterup/counterup.min.js"></script>
        <script src="lib/owlcarousel/owl.carousel.min.js"></script>
        <script src="lib/isotope/isotope.pkgd.min.js"></script>
        <script src="lib/lightbox/js/lightbox.min.js"></script>

        <!-- Template Javascript -->
        <script src="js/main.js"></script>
    </body>
</html>
                               

Whois info of domain

Domain Name: K5IJX.COM
Registry Domain ID: 2790591998_DOMAIN_COM-VRSN
Registrar WHOIS Server: whois.pairdomains.com
Registrar URL: http://www.pairdomains.com
Updated Date: 2024-05-16T08:45:19Z
Creation Date: 2023-06-15T20:05:59Z
Registry Expiry Date: 2025-06-15T20:05:59Z
Registrar: pair Networks, Inc. d/b/a pair Domains
Registrar IANA ID: 99
Registrar Abuse Contact Email: [email protected]
Registrar Abuse Contact Phone: +1.4123815195
Domain Status: ok https://icann.org/epp#ok
Name Server: NS5.PAIRNIC.COM
Name Server: NS6.PAIRNIC.COM
DNSSEC: unsigned
URL of the ICANN Whois Inaccuracy Complaint Form: https://www.icann.org/wicf/
>>> Last update of whois database: 2025-05-12T19:31:07Z <<<
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