gizipp / whois-api

Domain Checker API

Home Page:https://tools.gizipp.com/domain-checker

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

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

About

Domain Checker API

https://tools.gizipp.com/domain-checker


Languages

Language:Ruby 100.0%