Ecosyste.ms: Awesome

An open API service indexing awesome lists of open source software.

Awesome Lists | Featured Topics | Projects

https://github.com/gizipp/whois-api

Domain Checker API
https://github.com/gizipp/whois-api

api whois whois-service

Last synced: about 7 hours ago
JSON representation

Domain Checker API

Awesome Lists containing this project

README

        


ruby version


whois version




GitHub code size in bytes

# WHOIS API

This API powering [Domain Checker](https://tools.gizipp.com/domain-checker) - [GIZ Tool](https://tools.gizipp.com).

## Usage

### Via curl

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

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

### Via Jquery

```javascript
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](https://www.herokucdn.com/deploy/button.svg)](https://heroku.com/deploy?template=https://github.com/gizipp/whois-api)