Skip to content

Latest commit

 

History

History
80 lines (66 loc) · 2.48 KB

README.md

File metadata and controls

80 lines (66 loc) · 2.48 KB
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