Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
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
- Host: GitHub
- URL: https://github.com/gizipp/whois-api
- Owner: gizipp
- Created: 2020-04-12T00:47:08.000Z (over 4 years ago)
- Default Branch: master
- Last Pushed: 2021-09-18T07:56:48.000Z (about 3 years ago)
- Last Synced: 2023-02-26T06:56:33.484Z (over 1 year ago)
- Topics: api, whois, whois-service
- Language: Ruby
- Homepage: https://tools.gizipp.com/domain-checker
- Size: 18.6 KB
- Stars: 1
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# 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
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)