Return burndown aggregates for tasks from open projects matching the same filters as the open tasks route. It includes the total amount and estimation, the schedule bounds (task start and due dates, project dates as fallback) and the amount of tasks done per day.
Query parameters
-
Filter tasks on given project ID
-
Filter tasks on given task status ID
-
Filter tasks on given task type ID
-
Filter tasks on given person ID
-
Filter tasks on given studio ID
-
Filter tasks on given department ID
-
Filter tasks posterior to given start date
-
Filter tasks anterior to given due date
-
Filter tasks on given priority
GET
/data/tasks/open-tasks/burndown
curl \
--request GET 'http://api.example.com/data/tasks/open-tasks/burndown' \
--header "Authorization: $API_KEY"
Response examples (200)
{
"total": 42,
"total_estimation": 42.0,
"start_date": "2026-05-04",
"end_date": "2026-05-04",
"done_by_day": [
{
"date": "2026-05-04",
"done": 42,
"done_estimation": 42.0
}
]
}