🕵️Whois Checker API
Performs a Whois check on a domain to see who the domain owner is.
The API host for all tools is tools.datalabs.net.
Whois Checker API
POST https://tools.datalabs.net/whois
Host: tools.datalabs.net
Content-Type: application/json
{
"key": "DATALABS_API_KEY", // Required - DataLabs API Key
"domain": "example.com" // Required - Domain to check
}
import requests
api_key = "DATALABS_API_KEY"
tool = "whois"
domain = "example.com"
url = f"https://tools.datalabs.net/{tool}?key={api_key}&domain={domain}"
headers = {
'Host': 'tools.datalabs.net'
}
response = requests.get(url, headers=headers)
try:
response_data = response.json()
except ValueError:
response_data = response.text
print(response_data)
const axios = require('axios');
const api_key = "DATALABS_API_KEY";
const tool = "whois";
const domain = "example.com";
const url = `https://tools.datalabs.net/${tool}?key=${api_key}&domain=${domain}`;
const headers = {
'Host': 'tools.datalabs.net'
};
axios.get(url, { headers })
.then(response => {
console.log(response.data);
})
.catch(error => {
if (error.response) {
console.log(error.response.data);
} else {
console.log(error.message);
}
});
package main
import (
"encoding/json"
"fmt"
"io/ioutil"
"net/http"
)
func main() {
apiKey := "DATALABS_API_KEY"
tool := "whois"
domain := "example.com"
url := fmt.Sprintf("https://tools.datalabs.net/%s?key=%s&domain=%s", tool, apiKey, domain)
req, err := http.NewRequest("GET", url, nil)
if err != nil {
fmt.Println("Error:", err)
return
}
req.Header.Set("Host", "tools.datalabs.net")
client := &http.Client{}
resp, err := client.Do(req)
if err != nil {
fmt.Println("Error making HTTP request:", err)
return
}
defer resp.Body.Close()
if resp.StatusCode != http.StatusOK {
fmt.Printf("Non-OK HTTP status: %s\n", resp.Status)
return
}
body, err := ioutil.ReadAll(resp.Body)
if err != nil {
fmt.Println("Error reading response body:", err)
return
}
var responseData map[string]interface{}
if err := json.Unmarshal(body, &responseData); err != nil {
fmt.Println("Error unmarshaling JSON:", err)
fmt.Println(string(body))
} else {
fmt.Println(responseData)
}
}
using System;
using System.Net.Http;
using System.Threading.Tasks;
using Newtonsoft.Json.Linq;
using Newtonsoft.Json; // Ensure this directive is present for JsonReaderException
class Program
{
static void Main(string[] args)
{
// Call the async method
MainAsync(args).GetAwaiter().GetResult();
}
static async Task MainAsync(string[] args)
{
string apiKey = "DATALABS_API_KEY";
string tool = "whois";
string domain = "domain";
string url = string.Format("https://tools.datalabs.net/{0}?key={1}&domain={2}", tool, apiKey, domain);
using (HttpClient client = new HttpClient())
{
client.DefaultRequestHeaders.Add("Host", "tools.datalabs.net");
try
{
HttpResponseMessage response = await client.GetAsync(url);
response.EnsureSuccessStatusCode();
string responseBody = await response.Content.ReadAsStringAsync();
try
{
var responseData = JObject.Parse(responseBody);
Console.WriteLine("Response data:");
Console.WriteLine(responseData);
}
catch (JsonReaderException jsonEx)
{
Console.WriteLine("JSON Parsing error: " + jsonEx.Message);
Console.WriteLine("Response body:");
Console.WriteLine(responseBody);
}
}
catch (HttpRequestException e)
{
Console.WriteLine("Request error: " + e.Message);
}
}
}
}
Example Response
{
"success": true,
"result": "[Querying whois.verisign-grs.com]<br />[Redirected to whois.iana.org]<br />[Querying whois.iana.org]<br />[whois.iana.org]<br />% IANA WHOIS server<br />% for more information on IANA, visit http://www.iana.org<br />% This query returned 1 object<br /><br />domain: EXAMPLE.COM<br /><br />organisation: Internet Assigned Numbers Authority<br /><br />created: 1992-01-01<br />source: IANA<br /><br />",
"splitted_result": [
"[Querying whois.verisign-grs.com]",
"[Redirected to whois.iana.org]",
"[Querying whois.iana.org]",
"[whois.iana.org]",
"% IANA WHOIS server",
"% for more information on IANA, visit http://www.iana.org",
"% This query returned 1 object",
"",
"domain: EXAMPLE.COM",
"",
"organisation: Internet Assigned Numbers Authority",
"",
"created: 1992-01-01",
"source: IANA",
"",
""
]
}
Last updated