This API powering Domain Checker - GIZ Tool.
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
}
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);
});
Feel free to use it, but uptime is not guarantee or deploy this API in Heroku.