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

https://github.com/stdakov/ping

Check if your service is online
https://github.com/stdakov/ping

ping

Last synced: 8 months ago
JSON representation

Check if your service is online

Awesome Lists containing this project

README

          

# ping

![](img/screenshot2.png)
Check if your service is online.

Demo at https://ping.dakovdev.com

## Guidelines

### RESTful URLs

- Get data:

- GET https://ping.dakovdev.com/api/v1/ping?host=ip-or-hostname

- Response:

```json
{
"host": "google.com",
"online": true
}
```

```json
{
"host": "google123123.com",
"online": false
}
```