Paste a cron expression and get a plain-English explanation of what it does, along with the next scheduled run times. Supports standard 5-field cron syntax.
Note: The API expects the "expression" field. The demo sends "input" which may not match. For accurate results, use the CLI: delx cron "*/5 * * * *"
delx cron "*/5 * * * *" delx cron "0 9 * * MON-FRI"
curl -X POST https://api.delx.ai/api/v1/utils/cron \
-H "Content-Type: application/json" \
-d '{"expression": "*/5 * * * *"}'{
"jsonrpc": "2.0",
"id": 1,
"method": "tools/call",
"params": {
"name": "cron",
"arguments": { "expression": "*/5 * * * *" }
}
}Currently only standard 5-field cron expressions are supported (minute, hour, day-of-month, month, day-of-week). Extended formats with seconds are on the roadmap.
The response includes the next 5 scheduled execution times in ISO 8601 format (UTC).
Yes. Both three-letter abbreviations (MON, JAN) and numeric values are accepted for day-of-week and month fields.