Skip to content

gizipp/whois-api

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

16 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

ruby version whois version

GitHub code size in bytes

WHOIS API

This API powering Domain Checker - GIZ Tool.

Usage

Via curl

curl --location --request POST 'https://domain-checker-api.herokuapp.com/check' --form 'domain=gizipp.io'

Example response

{
   "gizipp.com": false,
   "gizipp.net": true,
   "gizipp.org": true,
   "gizipp.io": true
}

Via Jquery

var form = new FormData();
form.append("domain", "gizipp.io");

var settings = {
  "url": "https://domain-checker-api.herokuapp.com/check",
  "method": "POST",
  "timeout": 0,
  "processData": false,
  "mimeType": "multipart/form-data",
  "contentType": false,
  "data": form
};

$.ajax(settings).done(function (response) {
  console.log(response);
});

API Status

status (24 hours) uptime (past week) uptime (past month) uptime (last hour) response

Feel free to use it, but uptime is not guarantee or deploy this API in Heroku.

Deploy