Skip to content

How to Look Up Domain Information with Whois | Expiration Date, Name Servers, Registrant

Category: Domain / DNS
This article is currently available in Japanese only. We are working on translations.

<strong>Whois</strong> is used to look up information such as who owns the domain, when it expires, and which registrar manages it. It's a tool routinely used by web developers and infrastructure teams for website research, competitive analysis, and pre-transfer domain verification.

What You Can Learn from Whois

ItemContentUse case
RegistrantDomain Owner Name/OrganizationIdentifying the site operator
Registration date (Creation Date)Domain Registration DateUnderstanding the site's history
Expiration (Expiry Date)Domain Expiration DatePrevention of update oversights and drop-catch monitoring
RegistrarDomain RegistrarIdentify transfer destination and admin panel
Name Server (NS)DNS ServerVerify DNS Settings
StatusclientTransferProhibited, etc.Check transfer lock status

Whois Lookup from Command Line

# Linux / macOS
whois example.com

# Windows (PowerShell — 標準コマンドなし)
# → Web ツールを使うのが簡単

GDPR and Whois Privacy

Since the enforcement of GDPR in 2018, many TLDs have made <strong>registrant information private</strong> (Redacted for privacy). In particular, .com / .net / .org domains no longer display personal names, addresses, or phone numbers.

However, the following information is often still publicly disclosed:

  • Registrar name
  • Name Server
  • Registration Date, Expiration Date, and Update Date
  • Domain Status

Common usage patterns

1. Check domain expiration dates and prevent renewal lapses

Regularly check the Expiry Date of your own domain certificate. Many cases are left unattended after staff responsible for it resign.

2. Competitor site research

From a competitor's domain registration date, you can estimate when they started their service. CDN and hosting providers can also be inferred from nameservers.

3. Check for suspicious sites

Verify the domain of a suspicious phishing URL using Whois. If the registration date is from a few days ago, it is likely a fraudulent site.

4. Pre-verification for domain transfer

If the <code>clientTransferProhibited</code> status is set, you must unlock it in the registrar's control panel before transfer.

DevLab Whois Tool

<a href="/ja/check/whois/">DevLab's Whois lookup tool</a> allows you to retrieve Whois information instantly just by entering a domain name. You can easily check it in your browser without needing the command line. We also recommend using related tools such as <a href="/ja/check/dns/">DNS record lookup</a>, <a href="/ja/check/ssl/">SSL certificate checker</a>, and <a href="/ja/check/dns-propagation/">DNS propagation checker</a>.

Summary

Whois is a fundamental tool for domain management. It proves useful in a wide range of scenarios, from checking expiration dates to competitive research, suspicious site verification, and transfer preparation. Even after GDPR, technical information (NS / expiration / registrar) remains publicly available, making it invaluable for infrastructure investigations.