dropdown

Newly Registered Domain's Documentation

Overview

  • Newly Registered Domain's Whois API
    Newly Registered Domains Whois API helps you to download newly registered domains Whois files in CSV format as well as it helps you to retrieve newly registered domains whois for a specific date separately for gTLDs and ccTLDs. You can download newly registered domains whois database files through our billing dashboard manually or through API.
  • Newly Registered Domain's Cleaned Whois
    Newly Registered Domains Cleaned Whois API helps you to download newly registered domains cleaned Whois files in CSV format as well as it helps you to retrieve newly registered domains cleaned whois for a specific date separately for gTLDs and ccTLDs. You can download files through our billing dashboard manually or through API.
  • Newly Registered Domain's API
    • CSV Format
      The Newly Registered Domain's API helps you download files of newly registered domains in CSV format, containing only domains. You can download newly registered domains for a specific date separately for gTLDs and ccTLDs. The files can be accessed through our billing dashboard either manually or via the API.
    • JSON Format
      The Newly Registered Domain's API also allows you to query domains in JSON format. You can query newly registered domains for a specific date, and furthermore, you can filter the data based on top-level domains (TLDs).
  • Newly Registered Domain's DNS API
    Using the Newly Registered Domains DNS API, you can download a JSON file for recently registered domains. Newly registered domain's DNS database file can also be downloaded through API or manually via our billing dashboard.

Authorization

You can make authorized requests to our API by passing API key as a query parameter. To get your API key, login to our billing dashboard and get your API key! If your API key has been compromised, you can change it by clicking on reset button in billing dashboard.

With Whois

CSV Format

API

GET https://files.whoisfreaks.com/v3.1/download/domainer/gtld?apiKey=API_KEY&whois=true&date=2023-10-12 Copy
GET https://files.whoisfreaks.com/v3.1/download/domainer/cctld?apiKey=API_KEY&whois=true&date=2023-10-12 Copy
Copied

Input parameters: required

apiKey Get your API key from our billing dashboard.

whois Whois is a required and a boolean value parameter. It will retrieve a CSV file containing complete whois information of gTLDs and ccTLDs.

Input parameters: optional

date Date parameter is optional. The most recent file will be downloaded if the link doesn't have a date specified. If you choose to provide a date, use the format (yyyy-MM-dd).


Code Snippets

    
    curl --location --request GET 'https://files.whoisfreaks.com/v3.1/download/domainer/gtld?apiKey=API_KEY&whois=true&date=2023-10-12'
    Copy
    
    
    
    var request = require('request');
    var options = {
    'method': 'GET',
    'url': 'https://files.whoisfreaks.com/v3.1/download/domainer/gtld?apiKey=API_KEY&whois=true&date=2023-10-12',
    'headers': {
    }
    };
    request(options, function (error, response) {
    if (error) throw new Error(error);
    console.log(response.body);
    });

    
    Copy
    
    
    
    OkHttpClient client = new OkHttpClient().newBuilder()
    .build();
    Request request = new Request.Builder()
    .url("https://files.whoisfreaks.com/v3.1/download/domainer/gtld?apiKey=API_KEY&whois=true&date=2023-10-12")
    .method("GET", null)
    .build();
    Response response = client.newCall(request).execute();
    
    Copy
    
    
    
    import http.client

    conn = http.client.HTTPSConnection("files.whoisfreaks.com")
    payload = ''
    headers = {}

    conn.request("GET", "/v3.1/download/domainer/gtld?apiKey=API_KEY&whois=true&date=2023-10-12", payload, headers)
    res = conn.getresponse()
    data = res.read()
    print(data.decode("utf-8"))
    
    Copy
    
    
    
    <?php

    $curl = curl_init();

    curl_setopt_array($curl, array(
    CURLOPT_URL => 'https://files.whoisfreaks.com/v3.1/download/domainer/gtld?apiKey=API_KEY&whois=true&date=2023-10-12',
    CURLOPT_RETURNTRANSFER => true,
    CURLOPT_ENCODING => '',
    CURLOPT_MAXREDIRS => 10,
    CURLOPT_TIMEOUT => 0,
    CURLOPT_FOLLOWLOCATION => true,
    CURLOPT_HTTP_VERSION => CURL_HTTP_VERSION_1_1,
    CURLOPT_CUSTOMREQUEST => 'GET',
    ));

    $response = curl_exec($curl);

    curl_close($curl);
    echo $response;
    
    Copy
    
    
    
    require "uri"
    require "net/http"

    url = URI("https://files.whoisfreaks.com/v3.1/download/domainer/gtld?apiKey=API_KEY&whois=true&date=2023-10-12")

    https = Net::HTTP.new(url.host, url.port)
    https.use_ssl = true

    request = Net::HTTP::Get.new(url)

    response = https.request(request)
    puts response.read_body
    
    Copy
    
    
    
    var requestOptions = {
    method: 'GET',
    redirect: 'follow'
    };

    fetch("https://files.whoisfreaks.com/v3.1/download/domainer/gtld?apiKey=API_KEY&whois=true&date=2023-10-12", requestOptions)
    .then(response => response.text())
    .then(result => console.log(result))
    .catch(error => console.log('error', error));
    
    Copy
    
    
    
    var client = new RestClient("https://files.whoisfreaks.com/v3.1/download/domainer/gtld?apiKey=API_KEY&whois=true&date=2023-10-12");
    client.Timeout = -1;
    var request = new RestRequest(Method.GET);
    IRestResponse response = client.Execute(request);
    Console.WriteLine(response.Content);
    
    Copy
    
    
    
    package main

    import (
    "fmt"
    "net/http"
    "io/ioutil"
    )

    func main() {

    url := "https://files.whoisfreaks.com/v3.1/download/domainer/gtld?apiKey=API_KEY&whois=true&date=2023-10-12"
    method := "GET"

    client := &http.Client {
    }
    req, err := http.NewRequest(method, url, nil)

    if err != nil {
    fmt.Println(err)
    return
    }
    res, err := client.Do(req)
    if err != nil {
    fmt.Println(err)
    return
    }
    defer res.Body.Close()

    body, err := ioutil.ReadAll(res.Body)
    if err != nil {
    fmt.Println(err)
    return
    }
    fmt.Println(string(body))
    }
    
    Copy
    
    
    
    CURL *curl;
    CURLcode res;
    curl = curl_easy_init();
    if(curl) {
    curl_easy_setopt(curl, CURLOPT_CUSTOMREQUEST, "GET");
    curl_easy_setopt(curl, CURLOPT_URL, "https://files.whoisfreaks.com/v3.1/download/domainer/gtld?apiKey=API_KEY&whois=true&date=2023-10-12");
    curl_easy_setopt(curl, CURLOPT_FOLLOWLOCATION, 1L);
    curl_easy_setopt(curl, CURLOPT_DEFAULT_PROTOCOL, "https");
    struct curl_slist *headers = NULL;
    curl_easy_setopt(curl, CURLOPT_HTTPHEADER, headers);
    res = curl_easy_perform(curl);
    }
    curl_easy_cleanup(curl);
    
    Copy
    
    
    
    import Foundation
    #if canImport(FoundationNetworking)
    import FoundationNetworking
    #endif

    var semaphore = DispatchSemaphore (value: 0)

    var request = URLRequest(url: URL(string: "https://files.whoisfreaks.com/v3.1/download/domainer/gtld?apiKey=API_KEY&whois=true&date=2023-10-12")!,timeoutInterval: Double.infinity)
    request.httpMethod = "GET"

    let task = URLSession.shared.dataTask(with: request) { data, response, error in
    guard let data = data else {
    print(String(describing: error))
    semaphore.signal()
    return
    }
    print(String(data: data, encoding: .utf8)!)
    semaphore.signal()
    }

    task.resume()
    semaphore.wait()
    
    Copy
    
    

Response

Download sample of newly registered gTLDs whois file from here sample_whois.csv.gz

Download sample of newly registered ccTLDs whois file from here sample_whois.csv.gz


Downloaded Whois File is of following format.

        
    num,domain_name,query_time,create_date,update_date,expiry_date,domain_registrar_id,domain_registrar_name,domain_registrar_whois,domain_registrar_url,registrant_name,registrant_company,registrant_address,registrant_city,registrant_state,registrant_zip,registrant_country_code,registrant_country,registrant_email,registrant_phone,registrant_fax,administrative_name,administrative_company,administrative_address,administrative_city,administrative_state,administrative_zip,administrative_country_code,administrative_country,administrative_email,administrative_phone,administrative_fax,technical_name,technical_company,technical_address,technical_city,technical_state,technical_zip,technical_country_code,technical_country,technical_email,technical_phone,technical_fax,billing_name,billing_company,billing_address,billing_city,billing_state,billing_zip,billing_country_code,billing_country,billing_email,billing_phone,billing_fax,name_server_1,name_server_2,name_server_3,name_server_4,domain_status_1,domain_status_2,domain_status_3,domain_status_4,reseller_name,reseller_email,reseller_phone
    1,"airport-jobs-28863.bond","2023-10-12 09:19:52","2023-10-11","2023-10-11","2024-10-11","1345","Key-Systems LLC","whois.rrpproxy.net","http://www.key-systems.net","","","","","","","US","United States","Please query the RDDS service of the Registrar of Record identified in this output for information on how to contact the Registrant, Admin, or Tech contact of the queried domain name.","","","","","","","","","","","Please query the RDDS service of the Registrar of Record identified in this output for information on how to contact the Registrant, Admin, or Tech contact of the queried domain name.","","","","","","","","","","","Please query the RDDS service of the Registrar of Record identified in this output for information on how to contact the Registrant, Admin, or Tech contact of the queried domain name.","","","","","","","","","","","Please query the RDDS service of the Registrar of Record identified in this output for information on how to contact the Registrant, Admin, or Tech contact of the queried domain name.","","","NS1.NIC53.NET","NS2.NIC53.DE","","","serverTransferProhibited","addPeriod","","","","",""
    2,"infohato.online","2023-10-12 09:19:52","2023-10-12","2023-10-12","2024-10-12","1636","HOSTINGER operations, UAB","whois.hostinger.com","https://www.hostinger.com/","","Privacy Protect, LLC (PrivacyProtect.org)","","","MA","","US","United States","Please query the RDDS service of the Registrar of Record identified in this output for information on how to contact the Registrant, Admin, or Tech contact of the queried domain name.","","","","","","","","","","","Please query the RDDS service of the Registrar of Record identified in this output for information on how to contact the Registrant, Admin, or Tech contact of the queried domain name.","","","","","","","","","","","Please query the RDDS service of the Registrar of Record identified in this output for information on how to contact the Registrant, Admin, or Tech contact of the queried domain name.","","","","","","","","","","","Please query the RDDS service of the Registrar of Record identified in this output for information on how to contact the Registrant, Admin, or Tech contact of the queried domain name.","","","NS1.DNS-PARKING.COM","NS2.DNS-PARKING.COM","","","clientTransferProhibited","serverTransferProhibited","addPeriod","","","",""
    3,"hubserver.xyz","2023-10-12 09:19:52","2023-10-11","2023-10-11","2024-10-11","1068","Namecheap","whois.namecheap.com","https://namecheap.com","","Privacy service provided by Withheld for Privacy ehf","","","Capital Region","","IS","Iceland","Please query the RDDS service of the Registrar of Record identified in this output for information on how to contact the Registrant, Admin, or Tech contact of the queried domain name.","","","","","","","","","","","Please query the RDDS service of the Registrar of Record identified in this output for information on how to contact the Registrant, Admin, or Tech contact of the queried domain name.","","","","","","","","","","","Please query the RDDS service of the Registrar of Record identified in this output for information on how to contact the Registrant, Admin, or Tech contact of the queried domain name.","","","","","","","","","","","Please query the RDDS service of the Registrar of Record identified in this output for information on how to contact the Registrant, Admin, or Tech contact of the queried domain name.","","","TITAN.NS.CLOUDFLARE.COM","KIA.NS.CLOUDFLARE.COM","","","clientTransferProhibited","serverTransferProhibited","addPeriod","","","",""
    4,"409hit.win","2023-10-12 09:19:52","2023-10-11","2023-10-11","2024-10-11","472","Dynadot Inc","whois.dynadot.com","https://www.dynadot.com/","REDACTED FOR PRIVACY","Super Privacy Service LTD c/o Dynadot","","REDACTED FOR PRIVACY","California","REDACTED FOR PRIVACY","US","United States","Please query the RDDS service of the Registrar of Record identified in this output for information on how to contact the Registrant, Admin, or Tech contact of the queried domain name.","REDACTED FOR PRIVACY","REDACTED FOR PRIVACY","REDACTED FOR PRIVACY","REDACTED FOR PRIVACY","","REDACTED FOR PRIVACY","REDACTED FOR PRIVACY","REDACTED FOR PRIVACY","","REDACTED FOR PRIVACY","Please query the RDDS service of the Registrar of Record identified in this output for information on how to contact the Registrant, Admin, or Tech contact of the queried domain name.","REDACTED FOR PRIVACY","REDACTED FOR PRIVACY","REDACTED FOR PRIVACY","REDACTED FOR PRIVACY","","REDACTED FOR PRIVACY","REDACTED FOR PRIVACY","REDACTED FOR PRIVACY","","REDACTED FOR PRIVACY","Please query the RDDS service of the Registrar of Record identified in this output for information on how to contact the Registrant, Admin, or Tech contact of the queried domain name.","REDACTED FOR PRIVACY","REDACTED FOR PRIVACY","","","","","","","","","","","","ns1.dyna-ns.net","ns2.dyna-ns.net","","","clientTransferProhibited","serverTransferProhibited","addPeriod","","","",""
    5,"ygot45.com","2023-10-12 09:19:52","2023-10-11","2023-10-11","2024-10-11","2487","Internet Domain Service BS Corp","whois.internet.bs","http://www.internet.bs","Domain Admin","Whois Privacy Corp.","","Nassau","New Providence","00000","BS","Bahamas","OWNER@ygot45.com.customers.whoisprivacycorp.com","+1.5163872248","","Domain Admin","Whois Privacy Corp.","","Nassau","New Providence","00000","BS","Bahamas","ADMIN@ygot45.com.customers.whoisprivacycorp.com","+1.5163872248","","Domain Admin","Whois Privacy Corp.","","Nassau","New Providence","00000","BS","Bahamas","TECH@ygot45.com.customers.whoisprivacycorp.com","+1.5163872248","","","","","","","","","","","","","ns2.wpx.net","ns1.wpx.net","ns3.wpx.net","","clientTransferProhibited","","","","","",""
        
            

With Cleaned Whois

CSV Format

API

GET https://files.whoisfreaks.com/v3.1/download/domainer/gtld/cleaned?apiKey=API_KEY&date=2024-03-17 Copy
GET https://files.whoisfreaks.com/v3.1/download/domainer/cctld/cleaned?apiKey=API_KEY&date=2024-03-17 Copy
Copied

Input parameters: required

apiKey Get your API key from our billing dashboard.

Input parameters: optional

date Date parameter is optional. The most recent file will be downloaded if the link doesn't have a date specified. If you choose to provide a date, use the format (yyyy-MM-dd).


Code Snippets

    
    curl --location --request GET 'https://files.whoisfreaks.com/v3.1/download/domainer/gtld/cleaned?apiKey=API_KEY&date=2024-03-17'
    Copy
    
    
    
    var request = require('request');
    var options = {
    'method': 'GET',
    'url': 'https://files.whoisfreaks.com/v3.1/download/domainer/gtld/cleaned?apiKey=API_KEY&date=2024-03-17',
    'headers': {
    }
    };
    request(options, function (error, response) {
    if (error) throw new Error(error);
    console.log(response.body);
    });

    
    Copy
    
    
    
    OkHttpClient client = new OkHttpClient().newBuilder()
    .build();
    Request request = new Request.Builder()
    .url("https://files.whoisfreaks.com/v3.1/download/domainer/gtld/cleaned?apiKey=API_KEY&date=2024-03-17")
    .method("GET", null)
    .build();
    Response response = client.newCall(request).execute();
    
    Copy
    
    
    
    import http.client

    conn = http.client.HTTPSConnection("files.whoisfreaks.com")
    payload = ''
    headers = {}

    conn.request("GET", "/v3.1/download/domainer/gtld/cleaned?apiKey=API_KEY&date=2024-03-17", payload, headers)
    res = conn.getresponse()
    data = res.read()
    print(data.decode("utf-8"))
    
    Copy
    
    
    
    <?php

    $curl = curl_init();

    curl_setopt_array($curl, array(
    CURLOPT_URL => 'https://files.whoisfreaks.com/v3.1/download/domainer/gtld/cleaned?apiKey=API_KEY&date=2024-03-17',
    CURLOPT_RETURNTRANSFER => true,
    CURLOPT_ENCODING => '',
    CURLOPT_MAXREDIRS => 10,
    CURLOPT_TIMEOUT => 0,
    CURLOPT_FOLLOWLOCATION => true,
    CURLOPT_HTTP_VERSION => CURL_HTTP_VERSION_1_1,
    CURLOPT_CUSTOMREQUEST => 'GET',
    ));

    $response = curl_exec($curl);

    curl_close($curl);
    echo $response;
    
    Copy
    
    
    
    require "uri"
    require "net/http"

    url = URI("https://files.whoisfreaks.com/v3.1/download/domainer/gtld/cleaned?apiKey=API_KEY&date=2024-03-17")

    https = Net::HTTP.new(url.host, url.port)
    https.use_ssl = true

    request = Net::HTTP::Get.new(url)

    response = https.request(request)
    puts response.read_body
    
    Copy
    
    
    
    var requestOptions = {
    method: 'GET',
    redirect: 'follow'
    };

    fetch("https://files.whoisfreaks.com/v3.1/download/domainer/gtld/cleaned?apiKey=API_KEY&date=2024-03-17", requestOptions)
    .then(response => response.text())
    .then(result => console.log(result))
    .catch(error => console.log('error', error));
    
    Copy
    
    
    
    var client = new RestClient("https://files.whoisfreaks.com/v3.1/download/domainer/gtld/cleaned?apiKey=API_KEY&date=2024-03-17");
    client.Timeout = -1;
    var request = new RestRequest(Method.GET);
    IRestResponse response = client.Execute(request);
    Console.WriteLine(response.Content);
    
    Copy
    
    
    
    package main

    import (
    "fmt"
    "net/http"
    "io/ioutil"
    )

    func main() {

    url := "https://files.whoisfreaks.com/v3.1/download/domainer/gtld/cleaned?apiKey=API_KEY&date=2024-03-17"
    method := "GET"

    client := &http.Client {
    }
    req, err := http.NewRequest(method, url, nil)

    if err != nil {
    fmt.Println(err)
    return
    }
    res, err := client.Do(req)
    if err != nil {
    fmt.Println(err)
    return
    }
    defer res.Body.Close()

    body, err := ioutil.ReadAll(res.Body)
    if err != nil {
    fmt.Println(err)
    return
    }
    fmt.Println(string(body))
    }
    
    Copy
    
    
    
    CURL *curl;
    CURLcode res;
    curl = curl_easy_init();
    if(curl) {
    curl_easy_setopt(curl, CURLOPT_CUSTOMREQUEST, "GET");
    curl_easy_setopt(curl, CURLOPT_URL, "https://files.whoisfreaks.com/v3.1/download/domainer/gtld/cleaned?apiKey=API_KEY&date=2024-03-17");
    curl_easy_setopt(curl, CURLOPT_FOLLOWLOCATION, 1L);
    curl_easy_setopt(curl, CURLOPT_DEFAULT_PROTOCOL, "https");
    struct curl_slist *headers = NULL;
    curl_easy_setopt(curl, CURLOPT_HTTPHEADER, headers);
    res = curl_easy_perform(curl);
    }
    curl_easy_cleanup(curl);
    
    Copy
    
    
    
    import Foundation
    #if canImport(FoundationNetworking)
    import FoundationNetworking
    #endif

    var semaphore = DispatchSemaphore (value: 0)

    var request = URLRequest(url: URL(string: "https://files.whoisfreaks.com/v3.1/download/domainer/gtld/cleaned?apiKey=API_KEY&date=2024-03-17")!,timeoutInterval: Double.infinity)
    request.httpMethod = "GET"

    let task = URLSession.shared.dataTask(with: request) { data, response, error in
    guard let data = data else {
    print(String(describing: error))
    semaphore.signal()
    return
    }
    print(String(data: data, encoding: .utf8)!)
    semaphore.signal()
    }

    task.resume()
    semaphore.wait()
    
    Copy
    
    

Response

Download sample of newly registered gTLDs cleaned whois file from here sample_cleaned_whois.csv.gz

Download sample of newly registered ccTLDs cleaned whois file from here sample_cleaned_whois.csv.gz


Downloaded Cleaned Whois File is of following format.

        
    "num","domain_name","query_time","create_date","update_date","expiry_date","domain_registrar_id","domain_registrar_name","domain_registrar_whois","domain_registrar_url","registrant_name","registrant_company","registrant_address","registrant_city","registrant_state","registrant_zip","registrant_country_code","registrant_country","registrant_email","registrant_phone","registrant_fax","administrative_name","administrative_company","administrative_address","administrative_city","administrative_state","administrative_zip","administrative_country_code","administrative_country","administrative_email","administrative_phone","administrative_fax","technical_name","technical_company","technical_address","technical_city","technical_state","technical_zip","technical_country_code","technical_country","technical_email","technical_phone","technical_fax","billing_name","billing_company","billing_address","billing_city","billing_state","billing_zip","billing_country_code","billing_country","billing_email","billing_phone","billing_fax","name_server_1","name_server_2","name_server_3","name_server_4","domain_status_1","domain_status_2","domain_status_3","domain_status_4","reseller_name","reseller_email","reseller_phone"
    1,"cai-shine.com.tw","2024-03-17 11:10:42",2024-03-15,"","","2027-03-15","","WebCC Ltd.","","","","","(Redacted for privacy)","","","","","","","","","","","","","","","wmn_service@hotmail.com","","","","","","","","","","","","","","","","","","","","","ns28a.dnsnoc123.com","ns28b.dnsnoc123.com","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","Ok","","","","","","","","","","","","","",""
    2,"nicotinesalt.com.br","2024-03-17 11:10:43",2024-03-14,2024-03-14,2025-03-14,"","","","","BRUNO MARTINS TREVISAN","","","","","","BR","","Brazil","bruno.mtrevisan@gmail.com","","","","","","","","BR","","Brazil","","","BRUNO MARTINS TREVISAN","","","","","","BR","","Brazil","bruno.mtrevisan@gmail.com","","","","","","","","BR","","Brazil","","","ns63.domaincontrol.com","ns64.domaincontrol.com","","Published","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","",""
    3,"caom.tv","2024-03-17 11:10:43",2024-02-27,2024-03-15,2025-02-27,48,"ENOM, INC.","WHOIS.ENOM.COM","WWW.ENOMDOMAINS.COM","Proxy Protection LLC (248319283)","Proxy Protection LLC","","Brea","CA",92821,"US","United States","DreamHostDoNotDelete@proxy.dreamhost.com",1.7147064182,"","Proxy Protection LLC","Proxy Protection LLC","","Brea","CA",92821,"US","United States","DreamHostDoNotDelete@proxy.dreamhost.com",1.7147064182,"","Proxy Protection LLC","Proxy Protection LLC","","Brea","CA",92821,"US","United States","DreamHostDoNotDelete@proxy.dreamhost.com",1.7147064182,"","","","","","","","","","","dns1.namecheaphosting.com","dns2.namecheaphosting.com","","clientTransferProhibited","serverTransferProhibited","","","","","","","","","","","","","",""
    4,"culturaepoder.com.br","2024-03-17 11:10:44",2024-03-15,2024-03-15,2026-03-15,"","","","","","Lana DAvila Campanella","","","","","BR","Brazil","lanacampanella1@gmail.com","","","","","","","","","","BR","Brazil","","","Lana DAvila Campanella","","","","BR","Brazil","lanacampanella1@gmail.com","","","","","","","","","","BR","Brazil","","","ns684.hostgator.com.br","ns685.hostgator.com.br","","","Published","","",""
    5,"elianamorita.com.br","2024-03-17 11:10:44",2024-01-15,2024-03-15,2025-01-15,"","","","","","Eliana Morita","","","","","BR","Brazil","financeiro@citihinode.com.br","","","","","","","","","","BR","Brazil","","","Diego Pontoglio Meneghetti","","","","BR","Brazil","diego@estudioteca.com","","","","","","","","","","BR","Brazil","","","nelly.ns.cloudflare.com","porter.ns.cloudflare.com","","","Published","","",""
        
            

Without Whois

CSV Format

API

GET https://files.whoisfreaks.com/v3.1/download/domainer/gtld?apiKey=API_KEY&whois=false&date=2023-10-12 Copy
GET https://files.whoisfreaks.com/v3.1/download/domainer/cctld?apiKey=API_KEY&whois=false&date=2023-10-12 Copy
Copied

Input parameters: required

apiKey Get your API key from our billing dashboard.

whois Whois is a required and a boolean value parameter. It will retrieve a CSV file containing newly registered domains for gTLDs and ccTLDs.

Input parameters: optional

date Date parameter is optional. The most recent file will be downloaded if the link doesn't have a date specified. If you choose to provide a date, use the format (yyyy-MM-dd).

Code Snippets

    
    curl --location --request GET 'https://files.whoisfreaks.com/v3.1/download/domainer/gtld?apiKey=API_KEY&whois=false&date=2023-10-12'
    Copy
    
    
    
    var request = require('request');
    var options = {
    'method': 'GET',
    'url': 'https://files.whoisfreaks.com/v3.1/download/domainer/gtld?apiKey=API_KEY&whois=false&date=2023-10-12',
    'headers': {
    }
    };
    request(options, function (error, response) {
    if (error) throw new Error(error);
    console.log(response.body);
    });

    
    Copy
    
    
    
    OkHttpClient client = new OkHttpClient().newBuilder()
    .build();
    Request request = new Request.Builder()
    .url("https://files.whoisfreaks.com/v3.1/download/domainer/gtld?apiKey=API_KEY&whois=false&date=2023-10-12")
    .method("GET", null)
    .build();
    Response response = client.newCall(request).execute();
    
    Copy
    
    
    
    import http.client

    conn = http.client.HTTPSConnection("files.whoisfreaks.com")
    payload = ''
    headers = {}

    conn.request("GET", "files.whoisfreaks.com/v3.1/download/domainer/gtld?apiKey=API_KEY&whois=false&date=2023-10-12", payload, headers)
    res = conn.getresponse()
    data = res.read()
    print(data.decode("utf-8"))
    
    Copy
    
    
    
    <?php

    $curl = curl_init();

    curl_setopt_array($curl, array(
    CURLOPT_URL => 'https://files.whoisfreaks.com/v3.1/download/domainer/gtld?apiKey=API_KEY&whois=false&date=2023-10-12',
    CURLOPT_RETURNTRANSFER => true,
    CURLOPT_ENCODING => '',
    CURLOPT_MAXREDIRS => 10,
    CURLOPT_TIMEOUT => 0,
    CURLOPT_FOLLOWLOCATION => true,
    CURLOPT_HTTP_VERSION => CURL_HTTP_VERSION_1_1,
    CURLOPT_CUSTOMREQUEST => 'GET',
    ));

    $response = curl_exec($curl);

    curl_close($curl);
    echo $response;
    
    Copy
    
    
    
    require "uri"
    require "net/http"

    url = URI("https://files.whoisfreaks.com/v3.1/download/domainer/gtld?apiKey=API_KEY&whois=false&date=2023-10-12")

    https = Net::HTTP.new(url.host, url.port)
    https.use_ssl = true

    request = Net::HTTP::Get.new(url)

    response = https.request(request)
    puts response.read_body
    
    Copy
    
    
    
    var requestOptions = {
    method: 'GET',
    redirect: 'follow'
    };

    fetch("https://files.whoisfreaks.com/v3.1/download/domainer/gtld?apiKey=API_KEY&whois=false&date=2023-10-12", requestOptions)
    .then(response => response.text())
    .then(result => console.log(result))
    .catch(error => console.log('error', error));
    
    Copy
    
    
    
    var client = new RestClient("https://files.whoisfreaks.com/v3.1/download/domainer/gtld?apiKey=API_KEY&whois=false&date=2023-10-12");
    client.Timeout = -1;
    var request = new RestRequest(Method.GET);
    IRestResponse response = client.Execute(request);
    Console.WriteLine(response.Content);
    
    Copy
    
    
    
    package main

    import (
    "fmt"
    "net/http"
    "io/ioutil"
    )

    func main() {

    url := "https://files.whoisfreaks.com/v3.1/download/domainer/gtld?apiKey=API_KEY&whois=false&date=2023-10-12"
    method := "GET"

    client := &http.Client {
    }
    req, err := http.NewRequest(method, url, nil)

    if err != nil {
    fmt.Println(err)
    return
    }
    res, err := client.Do(req)
    if err != nil {
    fmt.Println(err)
    return
    }
    defer res.Body.Close()

    body, err := ioutil.ReadAll(res.Body)
    if err != nil {
    fmt.Println(err)
    return
    }
    fmt.Println(string(body))
    }
    
    Copy
    
    
    
    CURL *curl;
    CURLcode res;
    curl = curl_easy_init();
    if(curl) {
    curl_easy_setopt(curl, CURLOPT_CUSTOMREQUEST, "GET");
    curl_easy_setopt(curl, CURLOPT_URL, "https://files.whoisfreaks.com/v3.1/download/domainer/gtld?apiKey=API_KEY&whois=false&date=2023-10-12");
    curl_easy_setopt(curl, CURLOPT_FOLLOWLOCATION, 1L);
    curl_easy_setopt(curl, CURLOPT_DEFAULT_PROTOCOL, "https");
    struct curl_slist *headers = NULL;
    curl_easy_setopt(curl, CURLOPT_HTTPHEADER, headers);
    res = curl_easy_perform(curl);
    }
    curl_easy_cleanup(curl);
    
    Copy
    
    
    
    import Foundation
    #if canImport(FoundationNetworking)
    import FoundationNetworking
    #endif

    var semaphore = DispatchSemaphore (value: 0)

    var request = URLRequest(url: URL(string: "https://files.whoisfreaks.com/v3.1/domains/gtld?apiKey=API_KEY&date=2023-10-12?tlds=com,us")!,timeoutInterval: Double.infinity)
    request.httpMethod = "GET"

    let task = URLSession.shared.dataTask(with: request) { data, response, error in
    guard let data = data else {
    print(String(describing: error))
    semaphore.signal()
    return
    }
    print(String(data: data, encoding: .utf8)!)
    semaphore.signal()
    }

    task.resume()
    semaphore.wait()
    
    Copy
    
    

Response


Download sample of newly registered gTLDs domains file from here sample_newly_gtlds.csv.gz

Download sample of newly registered ccTLDs domains file from here sample_newly_cctlds.csv.gz


Downloaded file would contain newly registered domains for tlds in following format.

        
    airport-jobs-28863.bond
    infohato.online
    hubserver.xyz
    409hit.win
    ygot45.com
    
            

JSON Format

API

GET https://files.whoisfreaks.com/v3.1/domains/newly/gtld?apiKey=API_KEY&date=2023-10-12&tlds=com,net Copy
GET https://files.whoisfreaks.com/v3.1/domains/newly/cctld?apiKey=API_KEY&date=2023-10-12&tlds=us,uk Copy
GET https://files.whoisfreaks.com/v3.1/domains/newly?apiKey=API_KEY&date=2023-10-12&tlds=com,us Copy
Copied
  • You can use the /newly/gtld endpoint to retrieve either all newly registered gTLDs or specific gTLDs based on TLD filtration. To utilize this endpoint, it is mandatory that the data for newly registered gTLDs is prepared, which can be verified through our status API.
  • Similarly, you can use the /newly/cctld endpoint to obtain either all newly registered ccTLDs or specific ccTLDs based on TLD filtration. To use this endpoint, it is essential that the data for newly registered ccTLDs is prepared, and this can be confirmed through our status API.
  • If you need to perform combined filtration, such as filtering domains of com, us, uk, and net simultaneously, you can use the /newly endpoint. However, it is mandatory that both newly registered ccTLDs and gTLDs data are prepared to use this endpoint. You can verify the data preparation status through our status API.

Please note that if you pass any ccTLD in the tlds parameter while using the /newly/gtld endpoint, it will return empty data for that ccTLD, and vice versa.

Input parameters: required

apiKey Get your API key from our billing dashboard.

Input parameters: optional

date Date parameter is optional. The most recent data will be fetched if the link doesn't have a date specified. If you choose to provide a date, use the format (yyyy-MM-dd).

tlds TLDs parameter is optional. All domains will be fetched if you don't specify any tld. If you choose to provide a tld, just enter a tld (e.g. com). In case of more than one tlds, please provide a comma separated list (e.g. com, us, shop). If you want to specify all gtlds enter 'gtlds' and for all cctlds use 'cctlds'.

Code Snippets

    
    curl --location --request GET 'https://files.whoisfreaks.com/v3.1/domains/gtld?apiKey=API_KEY&date=2023-10-12?tlds=com,us'
    Copy
    
    
    
    var request = require('request');
    var options = {
    'method': 'GET',
    'url': 'https://files.whoisfreaks.com/v3.1/domains/gtld?apiKey=API_KEY&date=2023-10-12?tlds=com,us',
    'headers': {
    }
    };
    request(options, function (error, response) {
    if (error) throw new Error(error);
    console.log(response.body);
    });

    
    Copy
    
    
    
    OkHttpClient client = new OkHttpClient().newBuilder()
    .build();
    Request request = new Request.Builder()
    .url("https://files.whoisfreaks.com/v3.1/domains/gtld?apiKey=API_KEY&date=2023-10-12?tlds=com,us")
    .method("GET", null)
    .build();
    Response response = client.newCall(request).execute();
    
    Copy
    
    
    
    import http.client

    conn = http.client.HTTPSConnection("files.whoisfreaks.com")
    payload = ''
    headers = {}

    conn.request("GET", "files.whoisfreaks.com/v3.1/domains/gtld?apiKey=API_KEY&date=2023-10-12?tlds=com,us", payload, headers)
    res = conn.getresponse()
    data = res.read()
    print(data.decode("utf-8"))
    
    Copy
    
    
    
    <?php

    $curl = curl_init();

    curl_setopt_array($curl, array(
    CURLOPT_URL => 'https://files.whoisfreaks.com/v3.1/domains/gtld?apiKey=API_KEY&date=2023-10-12?tlds=com,us',
    CURLOPT_RETURNTRANSFER => true,
    CURLOPT_ENCODING => '',
    CURLOPT_MAXREDIRS => 10,
    CURLOPT_TIMEOUT => 0,
    CURLOPT_FOLLOWLOCATION => true,
    CURLOPT_HTTP_VERSION => CURL_HTTP_VERSION_1_1,
    CURLOPT_CUSTOMREQUEST => 'GET',
    ));

    $response = curl_exec($curl);

    curl_close($curl);
    echo $response;
    
    Copy
    
    
    
    require "uri"
    require "net/http"

    url = URI("https://files.whoisfreaks.com/v3.1/domains/gtld?apiKey=API_KEY&date=2023-10-12?tlds=com,us")

    https = Net::HTTP.new(url.host, url.port)
    https.use_ssl = true

    request = Net::HTTP::Get.new(url)

    response = https.request(request)
    puts response.read_body
    
    Copy
    
    
    
    var requestOptions = {
    method: 'GET',
    redirect: 'follow'
    };

    fetch("https://files.whoisfreaks.com/v3.1/domains/gtld?apiKey=API_KEY&date=2023-10-12?tlds=com,us", requestOptions)
    .then(response => response.text())
    .then(result => console.log(result))
    .catch(error => console.log('error', error));
    
    Copy
    
    
    
    var client = new RestClient("https://files.whoisfreaks.com/v3.1/domains/gtld?apiKey=API_KEY&date=2023-10-12?tlds=com,us");
    client.Timeout = -1;
    var request = new RestRequest(Method.GET);
    IRestResponse response = client.Execute(request);
    Console.WriteLine(response.Content);
    
    Copy
    
    
    
    package main

    import (
    "fmt"
    "net/http"
    "io/ioutil"
    )

    func main() {

    url := "https://files.whoisfreaks.com/v3.1/domains/gtld?apiKey=API_KEY&date=2023-10-12?tlds=com,us"
    method := "GET"

    client := &http.Client {
    }
    req, err := http.NewRequest(method, url, nil)

    if err != nil {
    fmt.Println(err)
    return
    }
    res, err := client.Do(req)
    if err != nil {
    fmt.Println(err)
    return
    }
    defer res.Body.Close()

    body, err := ioutil.ReadAll(res.Body)
    if err != nil {
    fmt.Println(err)
    return
    }
    fmt.Println(string(body))
    }
    
    Copy
    
    
    
    CURL *curl;
    CURLcode res;
    curl = curl_easy_init();
    if(curl) {
    curl_easy_setopt(curl, CURLOPT_CUSTOMREQUEST, "GET");
    curl_easy_setopt(curl, CURLOPT_URL, "https://files.whoisfreaks.com/v3.1/domains/gtld?apiKey=API_KEY&date=2023-10-12?tlds=com,us");
    curl_easy_setopt(curl, CURLOPT_FOLLOWLOCATION, 1L);
    curl_easy_setopt(curl, CURLOPT_DEFAULT_PROTOCOL, "https");
    struct curl_slist *headers = NULL;
    curl_easy_setopt(curl, CURLOPT_HTTPHEADER, headers);
    res = curl_easy_perform(curl);
    }
    curl_easy_cleanup(curl);
    
    Copy
    
    
    
    import Foundation
    #if canImport(FoundationNetworking)
    import FoundationNetworking
    #endif

    var semaphore = DispatchSemaphore (value: 0)

    var request = URLRequest(url: URL(string: "https://files.whoisfreaks.com/v3.1/domains/gtld?apiKey=API_KEY&date=2023-10-12?tlds=com,us")!,timeoutInterval: Double.infinity)
    request.httpMethod = "GET"

    let task = URLSession.shared.dataTask(with: request) { data, response, error in
    guard let data = data else {
    print(String(describing: error))
    semaphore.signal()
    return
    }
    print(String(data: data, encoding: .utf8)!)
    semaphore.signal()
    }

    task.resume()
    semaphore.wait()
    
    Copy
    
    

Response


Retrieved domains for tld will be JSON format. For example:

        
[
    "makincreative.com",
    "xyxldj.com",
    "hudesw.com",
    "ariaglobaltrading.com",
    "classicalnames.com",
    "kfsoupai.com",
    "casenumber8835486.com",
    "cfyueche.com",
    "ifrostretail.com",
    "theoutsidestyle.com",
    "yourmoneymindsetbff.com",
    "organiksofraniz.com",
    "hotels2030.com",
    "jzrunhe.com",
    "featherthedog.com",
    .
    .
    .
    "keobongda30.com",
    "melcomcopeland.com",
    "nidehaow36.com",
    "lightyear-space.com",
    "omniscc.com",
    "fantastic5corporation.com",
    "salesstorehomeware.com",
    "lightweightcrm.com",
    "liluaoki.com"
]
    
            



DNS

JSON File

API

GET https://files.whoisfreaks.com/v3.1/download/domainer/newly/dns?apiKey=API_KEY&date=2023-12-04 Copy
Copied

Input parameters: required

apiKey Get your API key from our billing dashboard.

Input parameters: optional

date Date parameter is optional. The most recent data will be fetched if the link doesn't have a date specified. If you choose to provide a date, use the format (yyyy-MM-dd).


Code Snippets

    
    curl --location --request GET 'https://files.whoisfreaks.com/v3.1/download/domainer/newly/dns?apiKey=API_KEY&date=2023-12-04'
    Copy
    
    
    
    var request = require('request');
    var options = {
    'method': 'GET',
    'url': 'https://files.whoisfreaks.com/v3.1/download/domainer/newly/dns?apiKey=API_KEY&date=2023-12-04',
    'headers': {
    }
    };
    request(options, function (error, response) {
    if (error) throw new Error(error);
    console.log(response.body);
    });

    
    Copy
    
    
    
    OkHttpClient client = new OkHttpClient().newBuilder()
    .build();
    Request request = new Request.Builder()
    .url("https://files.whoisfreaks.com/v3.1/download/domainer/newly/dns?apiKey=API_KEY&date=2023-12-04")
    .method("GET", null)
    .build();
    Response response = client.newCall(request).execute();
    
    Copy
    
    
    
    import http.client

    conn = http.client.HTTPSConnection("files.whoisfreaks.com")
    payload = ''
    headers = {}

    conn.request("GET", "/v3.1/download/domainer/newly/dns?apiKey=API_KEY&date=2023-12-04", payload, headers)
    res = conn.getresponse()
    data = res.read()
    print(data.decode("utf-8"))
    
    Copy
    
    
    
    <?php

    $curl = curl_init();

    curl_setopt_array($curl, array(
    CURLOPT_URL => 'https://files.whoisfreaks.com/v3.1/download/domainer/newly/dns?apiKey=API_KEY&date=2023-12-04',
    CURLOPT_RETURNTRANSFER => true,
    CURLOPT_ENCODING => '',
    CURLOPT_MAXREDIRS => 10,
    CURLOPT_TIMEOUT => 0,
    CURLOPT_FOLLOWLOCATION => true,
    CURLOPT_HTTP_VERSION => CURL_HTTP_VERSION_1_1,
    CURLOPT_CUSTOMREQUEST => 'GET',
    ));

    $response = curl_exec($curl);

    curl_close($curl);
    echo $response;
    
    Copy
    
    
    
    require "uri"
    require "net/http"

    url = URI("https://files.whoisfreaks.com/v3.1/download/domainer/newly/dns?apiKey=API_KEY&date=2023-12-04")

    https = Net::HTTP.new(url.host, url.port)
    https.use_ssl = true

    request = Net::HTTP::Get.new(url)

    response = https.request(request)
    puts response.read_body
    
    Copy
    
    
    
    var requestOptions = {
    method: 'GET',
    redirect: 'follow'
    };

    fetch("https://files.whoisfreaks.com/v3.1/download/domainer/newly/dns?apiKey=API_KEY&date=2023-12-04", requestOptions)
    .then(response => response.text())
    .then(result => console.log(result))
    .catch(error => console.log('error', error));
    
    Copy
    
    
    
    var client = new RestClient("https://files.whoisfreaks.com/v3.1/download/domainer/newly/dns?apiKey=API_KEY&date=2023-12-04");
    client.Timeout = -1;
    var request = new RestRequest(Method.GET);
    IRestResponse response = client.Execute(request);
    Console.WriteLine(response.Content);
    
    Copy
    
    
    
    package main

    import (
    "fmt"
    "net/http"
    "io/ioutil"
    )

    func main() {

    url := "https://files.whoisfreaks.com/v3.1/download/domainer/newly/dns?apiKey=API_KEY&date=2023-12-04"
    method := "GET"

    client := &http.Client {
    }
    req, err := http.NewRequest(method, url, nil)

    if err != nil {
    fmt.Println(err)
    return
    }
    res, err := client.Do(req)
    if err != nil {
    fmt.Println(err)
    return
    }
    defer res.Body.Close()

    body, err := ioutil.ReadAll(res.Body)
    if err != nil {
    fmt.Println(err)
    return
    }
    fmt.Println(string(body))
    }
    
    Copy
    
    
    
    CURL *curl;
    CURLcode res;
    curl = curl_easy_init();
    if(curl) {
    curl_easy_setopt(curl, CURLOPT_CUSTOMREQUEST, "GET");
    curl_easy_setopt(curl, CURLOPT_URL, "https://files.whoisfreaks.com/v3.1/download/domainer/newly/dns?apiKey=API_KEY&date=2023-12-04");
    curl_easy_setopt(curl, CURLOPT_FOLLOWLOCATION, 1L);
    curl_easy_setopt(curl, CURLOPT_DEFAULT_PROTOCOL, "https");
    struct curl_slist *headers = NULL;
    curl_easy_setopt(curl, CURLOPT_HTTPHEADER, headers);
    res = curl_easy_perform(curl);
    }
    curl_easy_cleanup(curl);
    
    Copy
    
    
    
    import Foundation
    #if canImport(FoundationNetworking)
    import FoundationNetworking
    #endif

    var semaphore = DispatchSemaphore (value: 0)

    var request = URLRequest(url: URL(string: "https://files.whoisfreaks.com/v3.1/download/domainer/newly/dns?apiKey=API_KEY&date=2023-12-04")!,timeoutInterval: Double.infinity)
    request.httpMethod = "GET"

    let task = URLSession.shared.dataTask(with: request) { data, response, error in
    guard let data = data else {
    print(String(describing: error))
    semaphore.signal()
    return
    }
    print(String(data: data, encoding: .utf8)!)
    semaphore.signal()
    }

    task.resume()
    semaphore.wait()
    
    Copy
    
    

Response

Download sample of newly registered dns file from here sample_dns.json.gz

Downloaded DNS File is in JSON format.


HTTP Error Codes

Below-mentioned possible type of error and desc.

HTTP Code
Error Message
401 Api record not found. [For Technical Support: support@whoisfreaks.com] 401 Provided API key is inactive. [For Technical Support: support@whoisfreaks.com] 401 Please Buy Domainer package. [For Technical Support: support@whoisfreaks.com] 401 Please Buy database subscription. [For Technical Support: support@whoisfreaks.com] 401 Your Domainer package plan is inactive. [For Technical Support: support@whoisfreaks.com] 401 Your Database subscription plan is inactive. [For Technical Support: support@whoisfreaks.com] 413 Please upgrade your plans.This Plan does not have to access to download file. [For Technical Support: support@whoisfreaks.com] 413 Please upgrade your plans.This Plan does not have the access to required Resource. [For Technical Support: support@whoisfreaks.com] 404 File is not available of this date. Please contact at support@whoisfreaks.com 404 Resources are not available of this date. Please contact at support@whoisfreaks.com 401 You cannot download file, as requested file for date(2022-09-10) is older than your subscription start date(2022-09-15). [For Technical Support: support@whoisfreaks.com] 401 You cannot access this Resource, as requested data for date(2023-10-11) is older than your subscription start date(2022-09-11). [For Technical Support: support@whoisfreaks.com] 401 You have exceeded the download limit of 20000 [For Technical Support: support@whoisfreaks.com]

Whois Files Status API

API

GET https://files.whoisfreaks.com/v3.1/status Copy
Copied

Response

                    {
    "expired": {
        "lastUpdate": "2023-10-15",
        "availableFrom": "2023-08-01"
    },
    "gtld": {
        "lastUpdate": "2023-10-16",
        "availableFrom": "2023-08-01"
    },
    "dropped": {
        "lastUpdate": "2023-10-15",
        "availableFrom": "2023-08-01"
    },
    "database_updates": [
        {
            "dailyBaseAvailable_From": "2023-09-01",
            "dailyBaseLastUpdate": "2023-10-15"
        },
        {
            "weeklyBaseAvailable_From": "2023-07-03",
            "weeklyBaseLastUpdate": "2023-10-16"
        },
        {
            "monthlyBaseAvailable_From": "2023-06-01",
            "monthlyBaseLastUpdate": "2023-10-01"
        }
    ],
    "cctld": {
        "lastUpdate": "2023-10-15",
        "availableFrom": "2023-08-09"
    }
}                    
            



FAQs



At what time do you generate your recently registered domains whois files?

The whois files for newly registered domains are updated for download at the following times:
  1. All ccTLD files are made available for download at 23:55 UTC, and they are of that particular day.
  2. Similarly, all gTLD files for a given day are made available for download at 13:30 UTC, and they all are of that particular day.
  3. DNS files are available for download at 02:00 UTC; however, they contain data from the previous day, not the current day.

We also notify you via email when each file is ready to download. Further, you can check file status through API.



Can I check programmatically any file type of generated domains whois file status?

Yes, you can check details of whois files through Domainer Files status API.



Is there any download limit to download files?

Yes, there is a limit to download whois files. but it can be extended. Download limit will be shown in billing dashboard with usage.