domainspot

Lookup domain availablility, price, etc

Usage no npm install needed!

<script type="module">
  import domainspot from 'https://cdn.skypack.dev/domainspot';
</script>

README

DomainSpot

Lookup a domains name, price, and availability over NodeJS

lookup (async)

Main function for searching domains

    await lookup('thisisaverylongtest', ['com'])
    // Will return
    {
        "thisisaverylongtest.com": "$12/year",
        "averylongtest.com": "$12/year",
        "thisisalongtest.com": "$12/year"
    }
Parameter Type Description Required
domain String The name of the domain you are searching for. True
extensions String[] Extensions you would like to include in search. If none are specified, every extension will be used. False

Contributions