@extends('storefront.layouts.main') @section('title', 'Whois Lookup') @section('content')

Whois Lookup

Check domain registration details and ownership information.

@csrf
@if ($errors->has('domain')) {{ $errors->first('domain') }} @endif
@if(isset($error))
{{ $error }}
@endif @if(isset($whoisData) && $whoisData)
Whois Data for {{ $domain }}
{{ $whoisData }}
@elseif(!isset($domain))

Enter a domain name above to look up its Whois information

Whois data includes domain registration details, registrar information, nameservers, and expiration dates.

What is Whois?

Whois is a widely used query/response protocol for querying databases that store registered domain details. The information includes:

  • Domain registrar - The company where the domain was registered
  • Registration dates - When the domain was created and when it expires
  • Nameservers - DNS servers handling the domain
  • Domain status - Current status codes (clientTransferProhibited, etc.)
  • Registrant info - Contact details (may be redacted for privacy)
@endif @endsection