I am aware that there exist some premium APIs for this, but I would like to know whether it's possible to check the availability of a domain using Node.js
So far, I have managed to achieve 95% accuracy by using url.resolveAny()
to check whether any DNS records exist for the domain. However, sometimes a domain may be registered without having any DNS records, and sometimes a domain may be "reserved" by the registrar (and therefore unavailable for purchase).
Does anyone have any suggestions for how to check the availability of a domain more accurately ?