A node client that uses the iana RDAP DNS database to lookup WHOIS information for free.
TLD List comes from: https://data.iana.org/rdap/dns.json
To see the status of all RDAP TLD's: https://deployment.rdap.org/
TLD's last updated on 09/25/2024
-
Install via
npm i freewhois --save
-
Code example:
const whois = require("freewhois");
async function whoisLookup() {
const data = await whois("https://www.google.com");
console.log(data); // returns as json
}
-
Install via
npm i freewhois -g
-
CLI command:
$ freewhois "https://www.google.com"
$ # returns formatted json
npm run update-tlds
MIT