WHOIS / RDAP Lookup
Look up domain registration details via RDAP.
/v1/whois
curl "https://dns.toolkitapi.io/v1/whois?domain=toolkitapi.io"
import httpx
resp = httpx.get(
"https://dns.toolkitapi.io/v1/whois?domain=toolkitapi.io",
)
print(resp.json())
const resp = await fetch("https://dns.toolkitapi.io/v1/whois?domain=toolkitapi.io", {
});
const data = await resp.json();
console.log(data);
# See curl example
{
"status": "ok",
"data": {
"domain": "toolkitapi.io",
"registrar": "RESERVED-Internet Assigned Numbers Authority",
"created": "1995-08-14T00:00:00Z",
"expires": "2025-08-13T00:00:00Z",
"updated": "2024-08-14T07:01:38Z",
"nameservers": ["a.iana-servers.net", "b.iana-servers.net"],
"dnssec": true,
"statuses": ["clientDeleteProhibited", "clientTransferProhibited"]
}
}
Try It Live
Description
How to Use
1. Pass the target domain in the `domain` parameter.
2. The response includes registration dates, registrar name, nameservers, DNSSEC status, and domain status codes.
3. Check the `expires` field to monitor domain expiration. Check `dnssec` to verify DNSSEC is enabled.
About This Tool
WHOIS / RDAP Lookup retrieves domain registration details using RDAP, the modern replacement for the legacy WHOIS protocol. It returns structured JSON data about the registrar, creation and expiration dates, nameservers, DNSSEC status, and EPP status codes.
RDAP provides more reliable, machine-readable output than raw WHOIS text, and is supported by all major TLD registries including ICANN gTLDs and most ccTLDs.
Why Use This Tool
- Domain expiration monitoring — Track when domains expire to avoid accidental lapses
- Registrar identification — Find which registrar manages a domain for transfer or abuse reporting
- DNSSEC auditing — Verify DNSSEC is enabled on critical domains
- Brand protection — Monitor registration changes on domains related to your brand
- Due diligence — Check domain age and history before purchasing or partnering
Frequently Asked Questions
What is RDAP?
Why are contact details redacted?
Does this work for all TLDs?
Start using WHOIS / RDAP Lookup now
Get your free API key and make your first request in under a minute.