Docs
Cron Expression Builder
Parse, describe, and compute next runs for a cron expression.
Docs
Parse, describe, and compute next runs for a cron expression.
Parses 5-field cron or @-macros, describes in English, computes next N runs from a configurable reference date.
POST /api/v1/tools/cron
Parse a 5-field cron expression (or @-macro), describe it in English, and compute the next N run times.
Returns: A plain-English description of the schedule and the next run timestamps.
| Name | Type | Required | Default | Description |
|---|---|---|---|---|
expression |
string | Yes | — | A 5-field cron expression or an @-macro (@daily, @hourly, etc.). |
runs |
number | No | 5 |
How many next-run timestamps to return (1-100, default 5). |
from |
string | No | — | ISO 8601 reference time to compute next runs from. Defaults to now. |
curl -X POST https://data-migration-tools.com/api/v1/tools/cron \
-H "Content-Type: application/json" \
-d '{"expression":"0 9 * * 1-5","runs":5}'
See the full API reference for all examples and error codes.