Primi passi
Crea il tuo primo cron job in meno di 2 minuti.
1. Ottieni la tua chiave API
Dopo aver creato un account, trova la tua chiave API in Console → Impostazioni.
2. Crea il tuo primo 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. Elenca i tuoi job
curl https://api.opencronapi.com/v1/jobs \ -H "X-API-Key: YOUR_API_KEY"
URL di base
https://api.opencronapi.com
Raccolta Postman
Scarica la raccolta Postman ufficiale per esplorare e testare tutti gli endpoint API all'istante.