Aan de slag

Maak je eerste cronjob in minder dan 2 minuten.

1. Haal je API-sleutel op

Nadat je een account hebt aangemaakt, vind je je API-sleutel in de Console → Settings.

2. Maak je eerste job aan

curl
curl -X POST https://api.opencronapi.com/v1/jobs \
  -H "X-API-Key: YOUR_API_KEY" \
  -H "Content-Type: application/json" \
  -d '{
    "name": "Health check",
    "url": "https://myapp.com/health",
    "method": "GET",
    "schedule_type": "interval",
    "interval_seconds": 300,
    "notify_on_failure": true
  }'

3. Toon je jobs

curl https://api.opencronapi.com/v1/jobs \
  -H "X-API-Key: YOUR_API_KEY"

Basis-URL

https://api.opencronapi.com

Postman-collectie

Download de officiële Postman-collectie om alle API-endpoints direct te verkennen en te testen.