Skip to content

Latest commit

 

History

History
391 lines (261 loc) · 10.3 KB

File metadata and controls

391 lines (261 loc) · 10.3 KB

WhoisFreaks.DatabasesNewlyRegisteredApi

All URIs are relative to https://api.whoisfreaks.com

Method HTTP request Description
dbNewlyCctld GET /v3.1/download/domainer/cctld Newly Registered ccTLD (CSV)
dbNewlyCctldCleaned GET /v3.1/download/domainer/cctld/cleaned Newly Registered ccTLD Cleaned WHOIS (CSV)
dbNewlyCctldJson GET /v3.1/domains/newly/cctld Newly Registered ccTLD (JSON)
dbNewlyDns GET /v3.1/download/domainer/newly/dns Newly Registered With DNS
dbNewlyGtld GET /v3.1/download/domainer/gtld Newly Registered gTLD (CSV)
dbNewlyGtldCleaned GET /v3.1/download/domainer/gtld/cleaned Newly Registered gTLD Cleaned WHOIS (CSV)
dbNewlyGtldJson GET /v3.1/domains/newly/gtld Newly Registered gTLD (JSON)

dbNewlyCctld

File dbNewlyCctld(whois, opts)

Newly Registered ccTLD (CSV)

Newly Registered ccTLD (CSV). Returns the file/snapshot described by this operation.

Example

import WhoisFreaks from 'whoisfreaks';
let defaultClient = WhoisFreaks.ApiClient.instance;
// Configure API key authorization: ApiKeyAuth
let ApiKeyAuth = defaultClient.authentications['ApiKeyAuth'];
ApiKeyAuth.apiKey = 'YOUR API KEY';
// Uncomment the following line to set a prefix for the API key, e.g. "Token" (defaults to null)
//ApiKeyAuth.apiKeyPrefix = 'Token';

let apiInstance = new WhoisFreaks.DatabasesNewlyRegisteredApi();
let whois = true; // Boolean | 
let opts = {
  'date': new Date("2013-10-20"), // Date | yyyy-MM-dd; omit for latest
  'tlds': "tlds_example" // String | 
};
apiInstance.dbNewlyCctld(whois, opts).then((data) => {
  console.log('API called successfully. Returned data: ' + data);
}, (error) => {
  console.error(error);
});

Parameters

Name Type Description Notes
whois Boolean
date Date yyyy-MM-dd; omit for latest [optional]
tlds String [optional]

Return type

File

Authorization

ApiKeyAuth

HTTP request headers

  • Content-Type: Not defined
  • Accept: application/octet-stream, application/json

dbNewlyCctldCleaned

File dbNewlyCctldCleaned(opts)

Newly Registered ccTLD Cleaned WHOIS (CSV)

Newly Registered ccTLD Cleaned WHOIS (CSV). Returns the file/snapshot described by this operation.

Example

import WhoisFreaks from 'whoisfreaks';
let defaultClient = WhoisFreaks.ApiClient.instance;
// Configure API key authorization: ApiKeyAuth
let ApiKeyAuth = defaultClient.authentications['ApiKeyAuth'];
ApiKeyAuth.apiKey = 'YOUR API KEY';
// Uncomment the following line to set a prefix for the API key, e.g. "Token" (defaults to null)
//ApiKeyAuth.apiKeyPrefix = 'Token';

let apiInstance = new WhoisFreaks.DatabasesNewlyRegisteredApi();
let opts = {
  'date': new Date("2013-10-20") // Date | yyyy-MM-dd; omit for latest
};
apiInstance.dbNewlyCctldCleaned(opts).then((data) => {
  console.log('API called successfully. Returned data: ' + data);
}, (error) => {
  console.error(error);
});

Parameters

Name Type Description Notes
date Date yyyy-MM-dd; omit for latest [optional]

Return type

File

Authorization

ApiKeyAuth

HTTP request headers

  • Content-Type: Not defined
  • Accept: application/octet-stream, application/json

dbNewlyCctldJson

[String] dbNewlyCctldJson(opts)

Newly Registered ccTLD (JSON)

Newly Registered ccTLD (JSON). Returns the file/snapshot described by this operation.

Example

import WhoisFreaks from 'whoisfreaks';
let defaultClient = WhoisFreaks.ApiClient.instance;
// Configure API key authorization: ApiKeyAuth
let ApiKeyAuth = defaultClient.authentications['ApiKeyAuth'];
ApiKeyAuth.apiKey = 'YOUR API KEY';
// Uncomment the following line to set a prefix for the API key, e.g. "Token" (defaults to null)
//ApiKeyAuth.apiKeyPrefix = 'Token';

let apiInstance = new WhoisFreaks.DatabasesNewlyRegisteredApi();
let opts = {
  'date': new Date("2013-10-20"), // Date | yyyy-MM-dd; omit for latest
  'tlds': "tlds_example" // String | 
};
apiInstance.dbNewlyCctldJson(opts).then((data) => {
  console.log('API called successfully. Returned data: ' + data);
}, (error) => {
  console.error(error);
});

Parameters

Name Type Description Notes
date Date yyyy-MM-dd; omit for latest [optional]
tlds String [optional]

Return type

[String]

Authorization

ApiKeyAuth

HTTP request headers

  • Content-Type: Not defined
  • Accept: application/json

dbNewlyDns

File dbNewlyDns(opts)

Newly Registered With DNS

Newly Registered With DNS. Returns the file/snapshot described by this operation.

Example

import WhoisFreaks from 'whoisfreaks';
let defaultClient = WhoisFreaks.ApiClient.instance;
// Configure API key authorization: ApiKeyAuth
let ApiKeyAuth = defaultClient.authentications['ApiKeyAuth'];
ApiKeyAuth.apiKey = 'YOUR API KEY';
// Uncomment the following line to set a prefix for the API key, e.g. "Token" (defaults to null)
//ApiKeyAuth.apiKeyPrefix = 'Token';

let apiInstance = new WhoisFreaks.DatabasesNewlyRegisteredApi();
let opts = {
  'date': new Date("2013-10-20") // Date | yyyy-MM-dd; omit for latest
};
apiInstance.dbNewlyDns(opts).then((data) => {
  console.log('API called successfully. Returned data: ' + data);
}, (error) => {
  console.error(error);
});

Parameters

Name Type Description Notes
date Date yyyy-MM-dd; omit for latest [optional]

Return type

File

Authorization

ApiKeyAuth

HTTP request headers

  • Content-Type: Not defined
  • Accept: application/octet-stream, application/json

dbNewlyGtld

File dbNewlyGtld(whois, opts)

Newly Registered gTLD (CSV)

Newly Registered gTLD (CSV). Returns the file/snapshot described by this operation.

Example

import WhoisFreaks from 'whoisfreaks';
let defaultClient = WhoisFreaks.ApiClient.instance;
// Configure API key authorization: ApiKeyAuth
let ApiKeyAuth = defaultClient.authentications['ApiKeyAuth'];
ApiKeyAuth.apiKey = 'YOUR API KEY';
// Uncomment the following line to set a prefix for the API key, e.g. "Token" (defaults to null)
//ApiKeyAuth.apiKeyPrefix = 'Token';

let apiInstance = new WhoisFreaks.DatabasesNewlyRegisteredApi();
let whois = true; // Boolean | 
let opts = {
  'date': new Date("2013-10-20"), // Date | yyyy-MM-dd; omit for latest
  'tlds': "tlds_example" // String | 
};
apiInstance.dbNewlyGtld(whois, opts).then((data) => {
  console.log('API called successfully. Returned data: ' + data);
}, (error) => {
  console.error(error);
});

Parameters

Name Type Description Notes
whois Boolean
date Date yyyy-MM-dd; omit for latest [optional]
tlds String [optional]

Return type

File

Authorization

ApiKeyAuth

HTTP request headers

  • Content-Type: Not defined
  • Accept: application/octet-stream, application/json

dbNewlyGtldCleaned

File dbNewlyGtldCleaned(opts)

Newly Registered gTLD Cleaned WHOIS (CSV)

Newly Registered gTLD Cleaned WHOIS (CSV). Returns the file/snapshot described by this operation.

Example

import WhoisFreaks from 'whoisfreaks';
let defaultClient = WhoisFreaks.ApiClient.instance;
// Configure API key authorization: ApiKeyAuth
let ApiKeyAuth = defaultClient.authentications['ApiKeyAuth'];
ApiKeyAuth.apiKey = 'YOUR API KEY';
// Uncomment the following line to set a prefix for the API key, e.g. "Token" (defaults to null)
//ApiKeyAuth.apiKeyPrefix = 'Token';

let apiInstance = new WhoisFreaks.DatabasesNewlyRegisteredApi();
let opts = {
  'date': new Date("2013-10-20") // Date | yyyy-MM-dd; omit for latest
};
apiInstance.dbNewlyGtldCleaned(opts).then((data) => {
  console.log('API called successfully. Returned data: ' + data);
}, (error) => {
  console.error(error);
});

Parameters

Name Type Description Notes
date Date yyyy-MM-dd; omit for latest [optional]

Return type

File

Authorization

ApiKeyAuth

HTTP request headers

  • Content-Type: Not defined
  • Accept: application/octet-stream, application/json

dbNewlyGtldJson

[String] dbNewlyGtldJson(opts)

Newly Registered gTLD (JSON)

Newly Registered gTLD (JSON). Returns the file/snapshot described by this operation.

Example

import WhoisFreaks from 'whoisfreaks';
let defaultClient = WhoisFreaks.ApiClient.instance;
// Configure API key authorization: ApiKeyAuth
let ApiKeyAuth = defaultClient.authentications['ApiKeyAuth'];
ApiKeyAuth.apiKey = 'YOUR API KEY';
// Uncomment the following line to set a prefix for the API key, e.g. "Token" (defaults to null)
//ApiKeyAuth.apiKeyPrefix = 'Token';

let apiInstance = new WhoisFreaks.DatabasesNewlyRegisteredApi();
let opts = {
  'date': new Date("2013-10-20"), // Date | yyyy-MM-dd; omit for latest
  'tlds': "tlds_example" // String | 
};
apiInstance.dbNewlyGtldJson(opts).then((data) => {
  console.log('API called successfully. Returned data: ' + data);
}, (error) => {
  console.error(error);
});

Parameters

Name Type Description Notes
date Date yyyy-MM-dd; omit for latest [optional]
tlds String [optional]

Return type

[String]

Authorization

ApiKeyAuth

HTTP request headers

  • Content-Type: Not defined
  • Accept: application/json