Look up a domain
There is no search API on this static site—use the CSV you downloaded. Sample is for quick format checks only.
grep
grep '^example.com,' whois_results.csv
grep -i 'example.com' whois_results.csv
SQLite
sqlite3 whois.db ".import --csv whois_results.csv whois"
Example: SELECT * FROM whois WHERE whois_domain = 'example.com';
← Home