Erste Schritte

Erstellen Sie Ihren ersten Cron-Job in unter 2 Minuten.

1. Holen Sie sich Ihren API-Schlüssel

Nach der Erstellung eines Kontos finden Sie Ihren API-Schlüssel in den Konsolen-Einstellungen → Settings.

2. Erstellen Sie Ihren ersten Job

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. Listen Sie Ihre Jobs auf

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

Basis-URL

https://api.opencronapi.com

Postman-Collection

Laden Sie die offizielle Postman-Collection herunter, um alle API-Endpoints sofort zu erkunden und zu testen.