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
- Host: GitHub
- URL: https://github.com/stdakov/ping
- Owner: stdakov
- License: mit
- Created: 2020-11-27T09:59:55.000Z (almost 5 years ago)
- Default Branch: main
- Last Pushed: 2020-12-14T06:51:22.000Z (almost 5 years ago)
- Last Synced: 2025-01-07T19:35:22.365Z (10 months ago)
- Topics: ping
- Language: JavaScript
- Homepage: https://ping.dakovdev.com
- Size: 511 KB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# ping

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
}
```