export_weekly_csv
Export time tracking data for a date range up to 7 days as CSV or JSON. Supports parallel scraping to speed up retrieval.
Instructions
Get time tracking data for a date range in CSV or JSON format. Maximum 7 days per request (one week). For longer periods, split into multiple requests (e.g., 30 days = 5 weekly requests). Returns data as text that you can save or analyze. Supports parallel scraping for faster retrieval.
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| start_date | Yes | Start date in YYYY-MM-DD format (e.g., 2025-01-15). | |
| end_date | Yes | End date in YYYY-MM-DD format (e.g., 2025-01-21). Maximum 7 days from start_date. | |
| format | No | Output format: 'csv' for CSV format (default) or 'json' for JSON format with summary | csv |
| parallel | No | Use parallel scraping: 'auto' (default, chooses based on date age), 'true' (force parallel), 'false' (force sequential). Parallel is 2x faster for recent dates. | auto |
| min_hours | No | Filter out entries with hours less than this value (excludes entries < 6 minutes by default). Set to 0 to disable filter. |