Cron & Scheduling API

Explain cron expressions and compute next run times for schedulers, dashboards, and workflow engines. Available as a premium API via RapidAPI.

Note: The Cron Next Runs tool is available as a free web tool, but this API offers higher limits and machine-friendly responses for production use.

Included endpoints


Example: Explain a cron expression

This example uses the RapidAPI gateway. Replace <your-rapidapi-key> with your actual key after subscribing.

curl --request POST \
  --url https://hefftools.dev/api/v1/cron/explain \
  --header 'Content-Type: application/json' \
  --header 'X-RapidAPI-Key: <your-rapidapi-key>' \
  --data '{
    "expression": "0 5 * * 1"
  }'

Response (example):

{
  "expression": "0 5 * * 1",
  "explanation": "Runs every Monday at 05:00 (server time)."
}

Use cases