How to use the API
Current version: 1.1. Previous versions: 1.0.
General use of the API
- All requests must be sent over HTTPS. 
- All requests must contain an API key (except the cron job pulse service). 
- All of our server responses are in JSON format. 
- The HTTP response code should always be - 200. All other response codes are system errors.
- The status value is - ok, if successful, or- errorif there are errors in your request. The reason for an error can be found inside- reason.
Cron job monitor pulse (heart beat) code examples
curl "https://cronly.app/api/monitors/pulse/{token}"<?php
file_get_contents("https://cronly.app/api/monitors/pulse/{token}");import urllib2
try:
    urllib2.urlopen("https://cronly.app/api/monitors/pulse/{token}")
except Exception:
    passvar https = require('https');
https.get("https://cronly.app/api/monitors/pulse/{token}");Last updated
