Build, test, and understand cron schedule expressions visually.
0 * * * **/5 * * * **/15 * * * *0 0 * * *0 9 * * 1-50 0 * * 00 0 1 * *0 0 1 1 *30 4 * * *0 */2 * * *0 9,17 * * **/30 * * * *Parse cron expressions programmatically:
curl "https://ai.doxx.lat/api/cron?expr=0+9+*+*+1-5"
Free API. CORS enabled. No signup required.
A cron expression consists of 5 fields: minute hour day-of-month month day-of-week. Special characters: * (any), , (list), - (range), / (step). For example, */15 9-17 * * 1-5 means "every 15 minutes during business hours on weekdays".