domaintally
v0.0.4
Published
Javascript wrapper for Domaintally.com API fetch domain, ranking and whois infomation
Downloads
2
Maintainers
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);
});