Getting Started

Create your first cron job in under 2 minutes.

1. Get your API key

After creating an account, find your API key in the Console → Settings.

2. Create your first 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. List your jobs

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

Base URL

https://api.opencronapi.com

Postman Collection

Download the official Postman collection to explore and test all API endpoints instantly.