Last updated
Output Formats
- ISO 8601 list: one date per line (
2026-03-17) - CSV: with optional date attribute columns
- JSON array:
["2026-03-17", "2026-03-18", ...] - Custom format: any date format pattern
- Unix timestamps: seconds or milliseconds
Use the Date Range Generator at techconverter.me to generate any date list instantly — configure start date, end date, interval, and filters, then download as CSV or copy as JSON.
Examples
Example 1: All Days in a Month
/* Configuration */
Start: 2026-03-01
End: 2026-03-31
Interval: Daily
/* Output */
2026-03-01
2026-03-02
2026-03-03
...
2026-03-31
/* 31 dates total */
Example 2: Business Days Only
/* Configuration */
Start: 2026-03-01
End: 2026-03-31
Interval: Daily
Filter: Business days only (exclude weekends)
/* Output */
2026-03-02 (Monday)
2026-03-03 (Tuesday)
2026-03-04 (Wednesday)
2026-03-05 (Thursday)
2026-03-06 (Friday)
2026-03-09 (Monday)
...
2026-03-31 (Tuesday)
/* 22 business days */
Example 3: First Day of Each Month for a Year
/* Configuration */
Start: 2026-01-01
End: 2026-12-31
Interval: Monthly (first day of month)
/* Output */
2026-01-01
2026-02-01
2026-03-01
2026-04-01
2026-05-01
2026-06-01
2026-07-01
2026-08-01
2026-09-01
2026-10-01
2026-11-01
2026-12-01
/* 12 dates */