domaintally

Javascript wrapper for Domaintally.com API fetch domain, ranking and whois infomation

Usage no npm install needed!

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

README

Wrapper for DomainTally domain information API.

Install

npm install domaintally

Usage

var key = '....'; //Get your api key from www.domaintally.com 
client = require('domaintally')({ key: key });

client.domain('google.com', function (res) {
  console.log(res);
});

client.ranking('google.com', function (res) {
  console.log(res);
});

client.whois('google.com', function (res) {
  console.log(res);
});