WHOIS Lookup

Get domain registration details including registrar, name servers, status, creation and expiry dates, and DNSSEC information.

Get API Key

Overview

Use Cases

  • Verifying domain ownership before initiating a transfer
  • Checking domain expiry dates for monitoring or alerting
  • Enriching lead data with registrar and registration details
  • Security research and phishing domain investigation

Features

Registrar name and WHOIS server
Name servers list
Domain status flags (e.g. clientTransferProhibited)
Creation, updated, and expiry dates
DNSSEC status

API Endpoints

WHOIS Lookup

Returns WHOIS registration information for a domain name.

GET
https://api.requiems.xyz/v1/tech/whois/{domain}

Parameters

Name Type Required Description
domain string Required The domain name to look up (e.g. example.com)

Try it out

Live Demo
Request

The domain name to look up (e.g. example.com)

Response Fields

Field Type Description
domain string The domain name that was looked up
registrar string The name of the registrar holding the domain registration
name_servers array of strings List of authoritative name servers for the domain
status array of strings EPP status codes for the domain (e.g. clientTransferProhibited)
created_date string Date the domain was first registered (ISO 8601)
updated_date string Date the domain record was last updated (ISO 8601)
expiry_date string Date the domain registration expires (ISO 8601)
dnssec boolean True when DNSSEC is enabled for the domain

Code Examples

curl "https://api.requiems.xyz/v1/tech/whois/example.com" \
  -H "requiems-api-key: YOUR_API_KEY"

Error Responses

bad_request

The domain name format is invalid.

not_found

No WHOIS record was found for the domain.

internal_error

Unexpected server error or upstream WHOIS query failure.

Frequently Asked Questions