---
title: "Get tasks by project"
method: GET
path: "/tasks/project/{id}"
tags: ["Tasks"]
---

# Get tasks by project

`GET /tasks/project/{id}`

Retrieve all tasks for a specific project

## Path parameters

- `id` string, uuid, required

## Response `200`

Tasks retrieved successfully

- object
  - `done` boolean, required — Indicates if the operation was successful
  - `body` Task[], nullable, required — Response data (type varies by endpoint, null if no data)
    - `id` string, uuid — Task UUID
    - `name` string — Task name
    - `description` string, nullable — Task description (supports HTML)
    - `project_id` string, uuid — Associated project UUID
    - `status_id` string, uuid — Task status UUID
    - `priority_id` string, uuid, nullable — Task priority UUID
    - `assignees` string[] — Array of assigned user UUIDs
    - `labels` object[] — Task labels with colors
      - `name` string
      - `color` string
    - `start_date` string, date, nullable — Task start date (YYYY-MM-DD)
    - `end_date` string, date, nullable — Task due date (YYYY-MM-DD)
    - `total_minutes` integer — Estimated time in minutes
    - `billable` boolean — Whether the task is billable
    - `created_at` string, date-time — Task creation timestamp
    - `updated_at` string, date-time — Last update timestamp
  - `title` string, nullable — Optional response title
  - `message` string, nullable — Optional message (error message or success notification)

---

[API](https://skmtc.dev/worklenz/apis/worklenz-api.md) · [All operations](https://skmtc.dev/worklenz/apis/worklenz-api/llms.txt) · [OpenAPI document](https://skmtc-service-production.skmtc.workers.dev/v1/apis/worklenz/worklenz-api/revisions/e44341b9118c/schema)
