Cron Expression Parser

Parse cron expressions into human-readable descriptions and see next run times.

Cron Expression
All examples use BASE_URL — set it to your deployment URL, e.g. https://winnieapi-v2.yourdomain.com
POST/api/cron/parse
Parse a cron expression into a human-readable description and next run times.
const res = await fetch(`${BASE_URL}/api/cron/parse`, { method: "POST", headers: { "Content-Type": "application/json" }, body: JSON.stringify({ expression: "*/5 * * * *" }) }); const data = await res.json(); // → { success: true, description: "Every 5 minutes", fields: {...}, nextRuns: [...] }