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

# List Tasks by Project

> List all tasks belonging to a project.

## Path Parameters

<ParamField path="projectId" type="string" required>
  Project ID.
</ParamField>

<RequestExample>
  ```bash cURL theme={null}
  curl http://localhost:3000/api/v1/tasks/project/clxyz456 \
    -H "Authorization: Bearer <token>"
  ```
</RequestExample>

<ResponseExample>
  ```json 200 theme={null}
  [
    {
      "id": "clxyz789",
      "title": "Implement login",
      "status": "TODO",
      "priority": "HIGH",
      "projectId": "clxyz456"
    }
  ]
  ```
</ResponseExample>
