Overview
The client library for Whois History API for Node.js.
The minimum Node.js version is 8.
Installation
The library is distributed via npm
npm install whois-history
Examples
Full API documentation available here
Create a new client
const WhoisHistoryClient = Client;const Options = Options; let client = 'Your API Key';
Make basic requests
// Check how many records available. It doesn't deduct credits.client ; // Get actual list of records.client ;
Additional options
You can specify search options for these methods.
let date = "2017-01-01" let options = optionssinceDate = dateoptionscreatedDateFrom = dateoptionscreatedDateTo = dateoptionsupdatedDateFrom = dateoptionsupdatedDateTo = dateoptionsexpiredDateFrom = dateoptionsexpiredDateTo = date client ;
Using Callback
client;