Skip to content

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

Category: Domain / DNS

Whois 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 registrant information private (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 clientTransferProhibited status is set, you must unlock it in the registrar's control panel before transfer.

DevLab Whois Tool

DevLab's Whois lookup tool 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 DNS record lookup, SSL certificate checker, and DNS propagation checker.

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.

❓ Frequently Asked Questions

Why does Whois not show the registrant's name?
Since GDPR most registrars return output with personal data redacted. On top of that, if the owner uses Whois privacy the record shows only the registrar's proxy details. When you genuinely need to reach the owner, you go through the anonymised contact shown in the record or through the registrar's abuse channel.
Can I register a domain the moment it expires?
No. Most gTLDs give a grace period of around 30 days after expiry during which the original owner can renew at the normal price. A 30-day redemption period follows, where recovery is possible only at a premium. Only after that is the name deleted and released. The whole sequence usually runs about 70 days, so do not read the Whois expiry date as the date it becomes available.
Whois and the nameservers disagree.
Whois reports the delegation recorded at the registry, while a live DNS query reports whichever server is answering right now. Just after a delegation change, the parent zone update and the cache expiry have not finished, so the two disagree for anywhere from a few hours to 48. During a transfer or a DNS migration this is the expected state — watch each resolver with a propagation checker and wait for them to converge.