← Back to Home

WHOIS Lookup

/whois/:domain
Perform WHOIS lookup for a domain using RDAP (Registration Data Access Protocol). Returns domain registration details, nameservers, status, and dates.
Try it now

Parameters

domain path
Domain name to lookup

Examples

curl
curl https://tcpdata.com/whois/google.com
JavaScript (fetch)
fetch('https://tcpdata.com/whois/google.com')
  .then(res => res.json())
  .then(data => console.log(data));
Python (requests)
import requests

response = requests.get('https://tcpdata.com/whois/google.com')
print(response.json())