Math Date Diff
Computes days, weeks, months, years, and business days between two ISO dates.
Run tool
Form input
Direct JSON or Markdown
Submit JSON directly or Markdown that can be converted into JSON.
Work steps
Inputs
| Name | Type | Required | Description |
|---|---|---|---|
start_date | text | Yes | Start date |
end_date | text | Yes | End date |
Outputs
| Name | Type | Description |
|---|---|---|
days | integer | Days |
weeks | number | Weeks |
months_approx | number | Months approx |
years_approx | number | Years approx |
business_days | integer | Business days |
work | array | Work |
Sample request
{
"start_date": "2026-01-01",
"end_date": "2026-03-01"
}