> ## Documentation Index
> Fetch the complete documentation index at: https://docs.shiftsheet.io/llms.txt
> Use this file to discover all available pages before exploring further.

# List Tasks for Project

> Retrieve all non-archived tasks associated with a specific project.

This includes task status, priority, due dates, and who the task is assigned to.

### Path Parameters

<ParamField path="id" type="string" required>
  The unique identifier of the project.
</ParamField>

### Response

<ResponseExample>
  ```json theme={null}
  {
    "data": [
      {
        "id": "tsk_abc...",
        "title": "Design Homepage Mockups",
        "description": "Figma files for the main landing page",
        "status": "IN_PROGRESS",
        "priority": "HIGH",
        "dueDate": "2026-05-20T00:00:00.000Z",
        "estimatedHours": 12,
        "actualHours": 4.5,
        "createdAt": "2026-05-10T00:00:00.000Z",
        "updatedAt": "2026-05-18T00:00:00.000Z",
        "assignees": [
          {
            "id": "usr_789...",
            "firstName": "Jane",
            "lastName": "Doe"
          }
        ]
      }
    ]
  }
  ```
</ResponseExample>
